From aec70b56dd54bf0144139cdc7b2772be883dd117 Mon Sep 17 00:00:00 2001 From: wuxuedaifu Date: Sat, 18 Jul 2026 19:30:13 +0400 Subject: [PATCH 01/16] docs: design spec for Canary-1b-v2 ASR backend (Phase 1) LocalAgreement-driven `canary` backend around NeMo EncDecMultiTaskModel, with AmberNet (langid_ambernet) detect-once-then-lock auto language detection. Phase 2 (native AlignAtt streaming) deferred to a later spec. --- .../2026-07-18-canary-1b-v2-backend-design.md | 247 ++++++++++++++++++ 1 file changed, 247 insertions(+) create mode 100644 docs/superpowers/specs/2026-07-18-canary-1b-v2-backend-design.md diff --git a/docs/superpowers/specs/2026-07-18-canary-1b-v2-backend-design.md b/docs/superpowers/specs/2026-07-18-canary-1b-v2-backend-design.md new file mode 100644 index 00000000..f5d38244 --- /dev/null +++ b/docs/superpowers/specs/2026-07-18-canary-1b-v2-backend-design.md @@ -0,0 +1,247 @@ +# Design: NVIDIA Canary-1b-v2 backend for WhisperLiveKit + +**Date:** 2026-07-18 +**Status:** Approved (Phase 1) +**Author:** brainstorming session + +## Summary + +Add support for NVIDIA's `nvidia/canary-1b-v2` speech model as a new ASR backend +in WhisperLiveKit, driven by the existing **LocalAgreement** streaming policy. +Phase 1 delivers a working `canary` backend with multilingual auto language +detection. Phase 2 (a separate, later spec) will add a lower-latency +`canary-streaming` backend built on NeMo's native AlignAtt decoder. + +## Background + +### The model + +Canary-1b-v2 (paper: arXiv 2509.14128; card: huggingface.co/nvidia/canary-1b-v2) +is a **978M-parameter attention encoder-decoder (AED)** model: + +- **Encoder:** FastConformer, 32 layers. +- **Decoder:** Transformer, 8 layers, autoregressive. +- **Tokenizer:** unified SentencePiece, 16,384 tokens. +- **Languages:** 25 European languages (Bulgarian, Croatian, Czech, Danish, + Dutch, English, Estonian, Finnish, French, German, Greek, Hungarian, Italian, + Latvian, Lithuanian, Maltese, Polish, Portuguese, Romanian, Russian, Slovak, + Slovenian, Spanish, Swedish, Ukrainian). +- **Tasks:** ASR and AST (translation), selected purely via `source_lang` / + `target_lang` kwargs (same lang = ASR, different = translation). +- **Timestamps:** native word-level and segment-level via + `model.transcribe(..., timestamps=True)`. +- **Streaming:** the base model is **offline/full-utterance**. `source_lang` is + **mandatory** — there is no native auto-detect mode. + +### NeMo API (verified) + +```python +from nemo.collections.asr.models import ASRModel # resolves to EncDecMultiTaskModel +asr_model = ASRModel.from_pretrained(model_name="nvidia/canary-1b-v2") + +# audio may be a list of file paths OR a list of 16kHz mono float32 numpy arrays +output = asr_model.transcribe( + [audio_np], # 16 kHz mono float32 + source_lang="en", + target_lang="en", + timestamps=True, +) +hyp = output[0] +hyp.text # full text +hyp.timestamp["word"] # [{'word': str, 'start': float, 'end': float}, ...] +hyp.timestamp["segment"] # [{'segment': str, 'start': float, 'end': float}, ...] +``` + +Package: `nemo_toolkit[asr]`. Timestamp support needs a recent NeMo +(main / >= 2.5). Runs on CUDA (target here), CPU (slow), and MPS (partial). + +### Why LocalAgreement fits + +The framework's `OnlineASRProcessor` (`local_agreement/online_asr.py`) already +turns an **offline** `transcribe()` into a streaming experience: it accumulates a +growing audio window, re-transcribes it each tick, and commits words via the +`HypothesisBuffer` LocalAgreement policy (confirm a word when consecutive +inferences agree). This is exactly how the Whisper backends are driven. Canary +returns native per-word timestamps, so it satisfies the +`transcribe()` / `ts_words()` / `segments_end_ts()` contract with no timestamp +reconstruction. This is the lowest-risk path and reuses the entire +VAD → ASR → output pipeline unchanged. + +The alternative — NeMo's native AlignAtt streaming decoder wired onto the +SimulStreaming policy — is much lower latency but tightly coupled to NeMo +streaming internals and far more complex. It is deferred to Phase 2. + +## Goals (Phase 1) + +- New `--backend canary` selectable backend, running on CUDA. +- Real-time streaming transcription via the existing LocalAgreement policy. +- Native word-level timestamps feeding the existing UI / diarization alignment. +- Per-session explicit language selection (25 languages) via the existing + `SessionASRProxy` seam. +- Multilingual **auto** language detection (`lan=auto`) via a lightweight + NeMo LID front-step (AmberNet), detect-once-then-lock per session. +- Diarization and the existing NLLB/AlignAtt translation engines continue to + compose unchanged. + +## Non-goals (Phase 1) + +- Canary's built-in direct translation (AST) as a translation backend — possible + later add-on; word timestamps are unreliable for AST (segment-level only). +- NeMo native AlignAtt streaming (`canary-streaming`) — Phase 2, separate spec. +- Apple Silicon / CPU optimization — device-agnostic code, but CUDA is the + supported/target path. +- Re-detection of language mid-session after the initial lock. + +## Architecture + +### New file: `whisperlivekit/canary_backend.py` + +Lazy-imports NeMo (so non-Canary users never load it). Contains two classes. + +#### `CanaryASR` — shared model holder + LocalAgreement contract + +Loaded once by the `TranscriptionEngine` singleton. + +Required attributes (mirroring `ASRBase` consumers in `online_asr.py`): +`sep=" "`, `original_language`, `backend_choice="canary"`, +`confidence_validation`, `tokenizer`, `buffer_trimming`, `buffer_trimming_sec`. + +Methods: + +- `load_model(...)` — `ASRModel.from_pretrained("nvidia/canary-1b-v2")` (or a + local path / alternate Canary model from `--canary-model`), moved to CUDA. +- `transcribe(audio, init_prompt="", source_lang=None)` — resolves the effective + source language (`source_lang` arg > `self.original_language` > default), + calls `model.transcribe([audio], source_lang=L, target_lang=L, + timestamps=True)`, returns the hypothesis object. `init_prompt` is accepted for + interface compatibility (Canary has no direct prompt slot — passed through only + if a supported mechanism exists, otherwise ignored). +- `ts_words(res)` — map `res.timestamp["word"]` `{word,start,end}` → `ASRToken`. +- `segments_end_ts(res)` — end times from `res.timestamp["segment"]`. +- `use_vad()` — no-op / warning (VAD handled upstream by Silero). + +#### `CanaryLID` — shared language-ID model + +Loaded once (only when any session may need `auto`). + +- `load_model(...)` — `EncDecSpeakerLabelModel.from_pretrained("langid_ambernet")`, + moved to CUDA. ~29M params / ~110 MB; VoxLingua107 (107 langs) — a superset of + Canary's 25. +- `detect(audio_np) -> (lang_code, confidence)` — run `forward()` on the 16 kHz + array, softmax, argmax → VoxLingua107 code, then map to Canary's accepted + `source_lang` set via a small code map (validate edge cases e.g. `el`, `uk`, + `mt`). Returns the mapped code and the max probability. + +### `core.py` changes + +- In `TranscriptionEngine._do_init()`, add an + `elif config.backend == "canary":` branch **before** the `backend_policy` + check (placed with the `voxtral` / `qwen3` branches). Instantiate `CanaryASR`; + instantiate `CanaryLID` when `config.lan == "auto"`. Stash the LID instance on + the engine so `online_factory()` can reach it. +- In `online_factory()`, add `if backend == "canary": ...` returning an + `OnlineASRProcessor` wrapping the (possibly proxied) ASR — routed **before** + the `backend_policy == "simulstreaming"` branch so it works regardless of the + default policy. + +### Auto language detection + +Constraint: `CanaryASR` and `CanaryLID` are shared singletons, but the detected +language is per-session. The existing `SessionASRProxy` is the per-session seam +(wraps `transcribe()` under a lock, overrides the language). + +**Mechanism (`lan == "auto"` sessions only):** + +1. Introduce `CanarySessionASR`, a subclass of `SessionASRProxy` (or a thin + wrapper) that holds a reference to the shared `CanaryLID` and a per-session + `detected_lang` (initially unset). +2. Until `detected_lang` is set, `transcribe()` uses a configurable fallback + `--canary-default-lang` (default `en`) as `source_lang`, so the first partial + window still produces output. +3. On the first window with committed audio duration `>= --canary-lid-min-sec` + (default `2.0`), call `CanaryLID.detect(window)` once. If confidence + `>= --canary-lid-min-conf` (default `0.5`), cache and lock `detected_lang` + for the rest of the session. Otherwise keep the fallback and retry on the next + window, up to a bounded number of attempts, then stay on the fallback. +4. Explicit-language sessions (e.g. `?lang=de`) bypass all of this via the normal + proxy path — no LID model touched. + +This keeps LID concerns out of both the shared `CanaryASR` and the generic +`SessionASRProxy`. Detect-once-and-lock; no mid-session re-detection in Phase 1. + +### Data flow (unchanged pipeline) + +``` +FFmpeg decode → Silero VAD → OnlineASRProcessor (growing window) + → [CanarySessionASR / SessionASRProxy] → CanaryASR.transcribe() on CUDA + → ts_words() → HypothesisBuffer LocalAgreement commit → stream to client +``` + +Diarization (sortformer/diart) and translation (NLLB / AlignAtt) engines are +untouched and compose exactly as today. + +## Configuration & dependencies + +### CLI / config additions (`parse_args.py`, `config.py`) + +- `--backend canary` — add `"canary"` to the `--backend` choices. +- `--canary-model` (default `nvidia/canary-1b-v2`) — HF repo id or local path. +- `--canary-default-lang` (default `en`) — fallback while auto-detecting. +- `--canary-lid-model` (default `langid_ambernet`). +- `--canary-lid-min-sec` (default `2.0`) — min committed audio before LID runs. +- `--canary-lid-min-conf` (default `0.5`) — min LID confidence to lock. +- Reuse existing `buffer_trimming` / `buffer_trimming_sec` (already default + `segment` / `15.0`, which suits Canary's long-window tolerance). + +Add the corresponding fields to `WhisperLiveKitConfig` and thread them through +`transcription_common_params` (or a `canary_params` dict, matching the pattern +used for `qwen3_streaming_params` / `voxtral`). + +### Dependencies + +- `nemo_toolkit[asr]` (heavy: PyTorch Lightning + full ASR stack). Timestamp + support requires recent NeMo (main / >= 2.5). +- Add as an **optional extra** in `pyproject.toml` (e.g. `.[canary]`), + **lazy-imported** inside `canary_backend.py` so non-Canary installs never load + NeMo — consistent with the other heavy backends (voxtral, qwen3). + +## Testing + +Per CLAUDE.md: real audio via `TestHarness`, no mock-based unit tests. All +Canary tests gated to run only when NeMo + model weights are available (skip +otherwise), like the other heavy-backend tests. + +1. **`CanaryASR`**: load model, `transcribe()` a known WAV, assert `ts_words()` + returns `ASRToken`s with monotonic, sane timestamps and WER below a threshold. +2. **`CanaryLID`**: feed clips in 2–3 languages; assert correct detected code and + correct VoxLingua107 → Canary mapping. +3. **End-to-end (`TestHarness`)**: backend=`canary`, feed real audio at + `speed=1.0`, `drain()`, assert committed text + WER threshold. A second run + with `lan="auto"` asserts the session locks to the correct language after the + first window. +4. **Routing**: `--backend canary` with the default `backend_policy` routes to + `OnlineASRProcessor` (not SimulStreaming), regardless of policy default. + +## Phased delivery + +- **Phase 1 (this spec):** `canary` backend on LocalAgreement + AmberNet + auto-detect. +- **Phase 2 (future, separate spec):** `canary-streaming` backend wrapping + NeMo's `speech_to_text_aed_streaming` AlignAtt decoder onto the SimulStreaming + policy for lower latency. + +## Open questions / risks + +- **NeMo version pin:** timestamp API needs a recent NeMo; pin a known-good + version in the optional extra and document it. +- **`init_prompt`:** Canary has no direct prompt-conditioning slot like Whisper; + the LocalAgreement `prompt()` context may be unused. Confirm whether Canary + exposes any decoder-context mechanism; if not, document that `init_prompt` is + ignored (LocalAgreement still functions without it). +- **Repeated full-window decode cost:** LocalAgreement re-decodes the growing + window each tick. On CUDA with a 1B model this is acceptable, but tune + `min_chunk_size` / `buffer_trimming_sec` to bound latency and compute; Phase 2 + streaming removes this cost. +- **LID code mapping:** validate every VoxLingua107 → Canary code (Greek `el`, + Ukrainian `uk`, Maltese `mt`) against Canary's exact accepted `source_lang` + token set. From 6072b24bfbefc59ce5a00081734e60ffc42807cd Mon Sep 17 00:00:00 2001 From: wuxuedaifu Date: Sat, 18 Jul 2026 19:47:52 +0400 Subject: [PATCH 02/16] docs: implementation plan for Canary-1b-v2 backend (Phase 1) Seven TDD tasks: config/CLI, pure timestamp+code-mapping helpers, CanarySessionASR auto-detect wrapper, CanaryASR/CanaryLID NeMo classes, core.py routing, optional extra + gated E2E test + docs. --- .../plans/2026-07-18-canary-1b-v2-backend.md | 876 ++++++++++++++++++ 1 file changed, 876 insertions(+) create mode 100644 docs/superpowers/plans/2026-07-18-canary-1b-v2-backend.md diff --git a/docs/superpowers/plans/2026-07-18-canary-1b-v2-backend.md b/docs/superpowers/plans/2026-07-18-canary-1b-v2-backend.md new file mode 100644 index 00000000..8d6a9dca --- /dev/null +++ b/docs/superpowers/plans/2026-07-18-canary-1b-v2-backend.md @@ -0,0 +1,876 @@ +# Canary-1b-v2 Backend Implementation Plan + +> **For agentic workers:** REQUIRED SUB-SKILL: Use superpowers:subagent-driven-development (recommended) or superpowers:executing-plans to implement this plan task-by-task. Steps use checkbox (`- [ ]`) syntax for tracking. + +**Goal:** Add a `canary` ASR backend that runs NVIDIA `nvidia/canary-1b-v2` on the existing LocalAgreement streaming policy, with AmberNet-based detect-once-then-lock auto language detection. + +**Architecture:** A new `whisperlivekit/canary_backend.py` holds `CanaryASR` (shared NeMo `EncDecMultiTaskModel` implementing the LocalAgreement `transcribe`/`ts_words`/`segments_end_ts` contract), `CanaryLID` (shared `EncDecSpeakerLabelModel` / `langid_ambernet` language identifier), and `CanarySessionASR` (a per-session `SessionASRProxy` subclass that resolves the source language, detecting once via LID for `auto` sessions then locking it). `core.py` instantiates and routes `canary` before the `backend_policy` branch; the whole VAD→ASR→output pipeline and `OnlineASRProcessor` are reused unchanged. + +**Tech Stack:** Python, NeMo (`nemo_toolkit[asr]`, lazy-imported), PyTorch/CUDA, existing WhisperLiveKit LocalAgreement pipeline, pytest. + +**Spec:** `docs/superpowers/specs/2026-07-18-canary-1b-v2-backend-design.md` + +--- + +## File Structure + +- **Create** `whisperlivekit/canary_backend.py` — `CanaryASR`, `CanaryLID`, `CanarySessionASR`, and the pure helpers `map_voxlingua_to_canary()`, `canary_words_to_tokens()`, `canary_segment_end_ts()`. NeMo/torch imported lazily inside methods so the module imports without NeMo installed. +- **Modify** `whisperlivekit/config.py` — add `canary_*` dataclass fields. +- **Modify** `whisperlivekit/parse_args.py` — add `"canary"` to `--backend` choices and a `--canary-*` argument group. +- **Modify** `whisperlivekit/core.py` — `_do_init()` branch to build `CanaryASR` (+ attach `CanaryLID`); `online_factory()` routing to wrap in `CanarySessionASR` + `OnlineASRProcessor`. +- **Modify** `pyproject.toml` — add a `canary` optional-dependency extra. +- **Create** `tests/test_canary_backend.py` — pure-function unit tests (no model) + availability-gated integration tests. + +--- + +## Task 1: Config fields and CLI arguments + +**Files:** +- Modify: `whisperlivekit/config.py` (after the qwen3 streaming block, before `def __post_init__`, around line 150) +- Modify: `whisperlivekit/parse_args.py` (`--backend` choices at line 209; new group after the SimulStreaming group) +- Test: `tests/test_canary_backend.py` + +- [ ] **Step 1: Write the failing test** + +Create `tests/test_canary_backend.py` with: + +```python +def test_parse_args_accepts_canary_options(monkeypatch): + from whisperlivekit.parse_args import parse_args + + monkeypatch.setattr( + "sys.argv", + [ + "whisperlivekit-server", + "--backend", "canary", + "--canary-model", "nvidia/canary-1b-v2", + "--canary-default-lang", "de", + "--canary-lid-model", "langid_ambernet", + "--canary-lid-min-sec", "3.0", + "--canary-lid-min-conf", "0.6", + ], + ) + cfg = parse_args() + assert cfg.backend == "canary" + assert cfg.canary_model == "nvidia/canary-1b-v2" + assert cfg.canary_default_lang == "de" + assert cfg.canary_lid_model == "langid_ambernet" + assert cfg.canary_lid_min_sec == 3.0 + assert cfg.canary_lid_min_conf == 0.6 + + +def test_canary_config_defaults(): + from whisperlivekit.config import WhisperLiveKitConfig + + cfg = WhisperLiveKitConfig.from_kwargs(backend="canary") + assert cfg.canary_model == "nvidia/canary-1b-v2" + assert cfg.canary_default_lang == "en" + assert cfg.canary_lid_model == "langid_ambernet" + assert cfg.canary_lid_min_sec == 2.0 + assert cfg.canary_lid_min_conf == 0.5 +``` + +- [ ] **Step 2: Run test to verify it fails** + +Run: `pytest tests/test_canary_backend.py::test_canary_config_defaults tests/test_canary_backend.py::test_parse_args_accepts_canary_options -v` +Expected: FAIL — `AttributeError`/`TypeError` (unknown `canary_*` fields) and `argparse` error on `--canary-model`. + +- [ ] **Step 3: Add config fields** + +In `whisperlivekit/config.py`, immediately after the `qwen3_streaming_block_frames: int = 192` line and before `def __post_init__(self):`, add: + +```python + # Canary backend (NeMo EncDecMultiTaskModel on LocalAgreement) + canary_model: str = "nvidia/canary-1b-v2" + canary_default_lang: str = "en" + canary_lid_model: str = "langid_ambernet" + canary_lid_min_sec: float = 2.0 + canary_lid_min_conf: float = 0.5 +``` + +- [ ] **Step 4: Add the `canary` backend choice** + +In `whisperlivekit/parse_args.py`, edit the `--backend` `choices` list (line ~209) to include `"canary"`: + +```python + choices=["auto", "mlx-whisper", "faster-whisper", "whisper", "openai-api", "voxtral", "voxtral-mlx", "qwen3-vllm", "qwen3-vllm-metal", "qwen3-streaming", "canary"], +``` + +- [ ] **Step 5: Add the `--canary-*` argument group** + +In `whisperlivekit/parse_args.py`, after the SimulStreaming argument group (search for `simulstreaming_group = parser.add_argument_group`) and before the return, add: + +```python + # Canary backend arguments + canary_group = parser.add_argument_group( + "Canary backend arguments (only used with --backend canary)" + ) + canary_group.add_argument( + "--canary-model", + type=str, + default="nvidia/canary-1b-v2", + dest="canary_model", + help="Canary model: HuggingFace/NGC id or local .nemo path. Default nvidia/canary-1b-v2.", + ) + canary_group.add_argument( + "--canary-default-lang", + type=str, + default="en", + dest="canary_default_lang", + help="Fallback source language used while auto-detecting (and if detection stays low-confidence).", + ) + canary_group.add_argument( + "--canary-lid-model", + type=str, + default="langid_ambernet", + dest="canary_lid_model", + help="NeMo spoken-language-ID model used for auto detection (EncDecSpeakerLabelModel).", + ) + canary_group.add_argument( + "--canary-lid-min-sec", + type=float, + default=2.0, + dest="canary_lid_min_sec", + help="Minimum seconds of buffered audio before language detection runs.", + ) + canary_group.add_argument( + "--canary-lid-min-conf", + type=float, + default=0.5, + dest="canary_lid_min_conf", + help="Minimum LID confidence (0-1) required to lock the detected language.", + ) +``` + +- [ ] **Step 6: Run tests to verify they pass** + +Run: `pytest tests/test_canary_backend.py::test_canary_config_defaults tests/test_canary_backend.py::test_parse_args_accepts_canary_options -v` +Expected: PASS (2 passed). + +- [ ] **Step 7: Commit** + +```bash +git add whisperlivekit/config.py whisperlivekit/parse_args.py tests/test_canary_backend.py +git commit -m "feat(canary): add canary backend config fields and CLI args" +``` + +--- + +## Task 2: Pure helpers — word/segment timestamp mapping + +**Files:** +- Create: `whisperlivekit/canary_backend.py` +- Test: `tests/test_canary_backend.py` + +- [ ] **Step 1: Write the failing test** + +Append to `tests/test_canary_backend.py`: + +```python +def test_canary_words_to_tokens_maps_word_timestamps(): + from whisperlivekit.canary_backend import canary_words_to_tokens + + word_stamps = [ + {"word": "hello", "start": 0.0, "end": 0.4}, + {"word": "world", "start": 0.4, "end": 0.9}, + ] + tokens = canary_words_to_tokens(word_stamps) + assert [t.text for t in tokens] == ["hello", "world"] + assert tokens[0].start == 0.0 and tokens[0].end == 0.4 + assert tokens[1].start == 0.4 and tokens[1].end == 0.9 + + +def test_canary_words_to_tokens_handles_missing_stamps(): + from whisperlivekit.canary_backend import canary_words_to_tokens + + assert canary_words_to_tokens(None) == [] + assert canary_words_to_tokens([]) == [] + + +def test_canary_segment_end_ts(): + from whisperlivekit.canary_backend import canary_segment_end_ts + + seg_stamps = [ + {"segment": "hello world.", "start": 0.0, "end": 0.9}, + {"segment": "bye.", "start": 1.0, "end": 1.5}, + ] + assert canary_segment_end_ts(seg_stamps) == [0.9, 1.5] + assert canary_segment_end_ts(None) == [] +``` + +- [ ] **Step 2: Run test to verify it fails** + +Run: `pytest tests/test_canary_backend.py -k "words_to_tokens or segment_end_ts" -v` +Expected: FAIL — `ModuleNotFoundError: whisperlivekit.canary_backend`. + +- [ ] **Step 3: Create the module with the pure helpers** + +Create `whisperlivekit/canary_backend.py`: + +```python +"""NVIDIA Canary-1b-v2 backend for WhisperLiveKit (LocalAgreement policy). + +Contains: + - CanaryASR: shared NeMo EncDecMultiTaskModel implementing the LocalAgreement + transcribe()/ts_words()/segments_end_ts() contract. + - CanaryLID: shared NeMo language-ID model (langid_ambernet). + - CanarySessionASR: per-session proxy that resolves the source language, + auto-detecting once via CanaryLID for ``auto`` sessions then locking it. + +NeMo and torch are imported lazily inside methods so this module imports fine +on machines without ``nemo_toolkit`` installed (routing/unit tests, non-canary +deployments). +""" + +import logging +from typing import List, Optional, Tuple + +from whisperlivekit.session_asr_proxy import SessionASRProxy +from whisperlivekit.timed_objects import ASRToken + +logger = logging.getLogger(__name__) + + +# Canary-1b-v2's 25 supported source-language codes. +CANARY_LANGS = { + "bg", "hr", "cs", "da", "nl", "en", "et", "fi", "fr", "de", "el", "hu", + "it", "lv", "lt", "mt", "pl", "pt", "ro", "ru", "sk", "sl", "es", "sv", "uk", +} + +# VoxLingua107 (AmberNet) codes that differ from Canary's expected code. +# VoxLingua107 is mostly ISO 639-1 already, so the map is small; extend after +# validating against the actual langid_ambernet label set. +_VOXLINGUA_TO_CANARY = { + # placeholder for known mismatches, e.g. "gr": "el" +} + + +def map_voxlingua_to_canary(code: str) -> Optional[str]: + """Map an AmberNet/VoxLingua107 language code to Canary's source_lang set. + + Returns the mapped code if Canary supports it, else None. + """ + if not code: + return None + code = _VOXLINGUA_TO_CANARY.get(code, code) + return code if code in CANARY_LANGS else None + + +def canary_words_to_tokens(word_stamps) -> List[ASRToken]: + """Convert Canary ``timestamp['word']`` entries to ASRToken objects.""" + if not word_stamps: + return [] + tokens: List[ASRToken] = [] + for w in word_stamps: + text = w.get("word") + if not text: + continue + tokens.append(ASRToken(w["start"], w["end"], text)) + return tokens + + +def canary_segment_end_ts(segment_stamps) -> List[float]: + """Extract segment end times from Canary ``timestamp['segment']`` entries.""" + if not segment_stamps: + return [] + return [s["end"] for s in segment_stamps] +``` + +- [ ] **Step 4: Run tests to verify they pass** + +Run: `pytest tests/test_canary_backend.py -k "words_to_tokens or segment_end_ts" -v` +Expected: PASS (3 passed). + +- [ ] **Step 5: Commit** + +```bash +git add whisperlivekit/canary_backend.py tests/test_canary_backend.py +git commit -m "feat(canary): pure word/segment timestamp mapping helpers" +``` + +--- + +## Task 3: Language-code mapping helper + +**Files:** +- Modify: `whisperlivekit/canary_backend.py` (helper already added in Task 2) +- Test: `tests/test_canary_backend.py` + +- [ ] **Step 1: Write the failing test** + +Append to `tests/test_canary_backend.py`: + +```python +def test_map_voxlingua_to_canary_supported(): + from whisperlivekit.canary_backend import map_voxlingua_to_canary + + assert map_voxlingua_to_canary("en") == "en" + assert map_voxlingua_to_canary("de") == "de" + assert map_voxlingua_to_canary("uk") == "uk" + + +def test_map_voxlingua_to_canary_unsupported_returns_none(): + from whisperlivekit.canary_backend import map_voxlingua_to_canary + + assert map_voxlingua_to_canary("zh") is None # Chinese not in Canary's 25 + assert map_voxlingua_to_canary("") is None + assert map_voxlingua_to_canary(None) is None +``` + +- [ ] **Step 2: Run tests to verify they pass** + +Run: `pytest tests/test_canary_backend.py -k "map_voxlingua" -v` +Expected: PASS (2 passed) — the helper was added in Task 2; these lock its contract. + +- [ ] **Step 3: Commit** + +```bash +git add tests/test_canary_backend.py +git commit -m "test(canary): lock voxlingua->canary code mapping contract" +``` + +--- + +## Task 4: `CanarySessionASR` auto-detect wrapper + +**Files:** +- Modify: `whisperlivekit/canary_backend.py` +- Test: `tests/test_canary_backend.py` + +This task tests control-flow (language resolution / detect-once-then-lock) with +tiny deterministic stubs — not the ASR pipeline. Real end-to-end coverage is +Task 7. + +- [ ] **Step 1: Write the failing test** + +Append to `tests/test_canary_backend.py`: + +```python +import numpy as np + + +class _RecordingCanaryASR: + """Minimal stand-in for CanaryASR that records the source language used.""" + sep = " " + + def __init__(self): + self.original_language = None + self.calls = [] + + def transcribe(self, audio, init_prompt=""): + self.calls.append(self.original_language) + return f"decoded:{self.original_language}" + + +class _StubLID: + def __init__(self, code="de", conf=0.9): + self._code, self._conf = code, conf + self.n_calls = 0 + + def detect(self, audio): + self.n_calls += 1 + return self._code, self._conf + + +def _audio(seconds): + return np.zeros(int(seconds * 16000), dtype=np.float32) + + +def test_explicit_language_bypasses_lid(): + from whisperlivekit.canary_backend import CanarySessionASR + + asr = _RecordingCanaryASR() + lid = _StubLID() + session = CanarySessionASR(asr, "fr", lid=lid, default_lang="en", + lid_min_sec=2.0, lid_min_conf=0.5) + session.transcribe(_audio(5)) + assert asr.calls == ["fr"] + assert lid.n_calls == 0 + + +def test_auto_uses_default_until_enough_audio(): + from whisperlivekit.canary_backend import CanarySessionASR + + asr = _RecordingCanaryASR() + lid = _StubLID(code="de", conf=0.9) + session = CanarySessionASR(asr, "auto", lid=lid, default_lang="en", + lid_min_sec=2.0, lid_min_conf=0.5) + session.transcribe(_audio(1.0)) # below lid_min_sec -> default, no LID + assert asr.calls == ["en"] + assert lid.n_calls == 0 + + +def test_auto_detects_once_then_locks(): + from whisperlivekit.canary_backend import CanarySessionASR + + asr = _RecordingCanaryASR() + lid = _StubLID(code="de", conf=0.9) + session = CanarySessionASR(asr, "auto", lid=lid, default_lang="en", + lid_min_sec=2.0, lid_min_conf=0.5) + session.transcribe(_audio(3.0)) # detects -> "de" + session.transcribe(_audio(4.0)) # locked -> "de", no second detect + assert asr.calls == ["de", "de"] + assert lid.n_calls == 1 + + +def test_auto_low_confidence_stays_on_default(): + from whisperlivekit.canary_backend import CanarySessionASR + + asr = _RecordingCanaryASR() + lid = _StubLID(code="de", conf=0.2) # below lid_min_conf + session = CanarySessionASR(asr, "auto", lid=lid, default_lang="en", + lid_min_sec=2.0, lid_min_conf=0.5) + session.transcribe(_audio(3.0)) + assert asr.calls == ["en"] # not locked, retried later +``` + +- [ ] **Step 2: Run tests to verify they fail** + +Run: `pytest tests/test_canary_backend.py -k "CanarySession or explicit_language or auto_" -v` +Expected: FAIL — `ImportError: cannot import name 'CanarySessionASR'`. + +- [ ] **Step 3: Implement `CanarySessionASR`** + +Append to `whisperlivekit/canary_backend.py`: + +```python +class CanarySessionASR(SessionASRProxy): + """Per-session Canary proxy with auto language detection. + + For explicit-language sessions this behaves like SessionASRProxy, forcing + ``source_lang`` to the chosen code. For ``auto`` sessions it uses + ``default_lang`` until ``lid_min_sec`` of audio is buffered, then runs the + shared LID once; on a confident result it locks that language for the rest + of the session. + """ + + SAMPLING_RATE = 16000 + + def __init__(self, asr, language, lid=None, default_lang="en", + lid_min_sec=2.0, lid_min_conf=0.5): + super().__init__(asr, language) + is_auto = (language is None) or (language == "auto") + object.__setattr__(self, "_is_auto", is_auto) + object.__setattr__(self, "_lid", lid) + object.__setattr__(self, "_default_lang", default_lang) + object.__setattr__(self, "_lid_min_sec", lid_min_sec) + object.__setattr__(self, "_lid_min_conf", lid_min_conf) + object.__setattr__(self, "_detected_lang", None) + + def _resolve_language(self, audio) -> str: + # Explicit language: SessionASRProxy stored it as _session_language. + if not self._is_auto: + return self._session_language + if self._detected_lang is not None: + return self._detected_lang + if self._lid is not None and len(audio) >= self._lid_min_sec * self.SAMPLING_RATE: + try: + code, conf = self._lid.detect(audio) + except Exception as e: # noqa: BLE001 + logger.warning("Canary LID failed: %s", e) + code, conf = None, 0.0 + if code is not None and conf >= self._lid_min_conf: + object.__setattr__(self, "_detected_lang", code) + logger.info("Canary auto-detected language: %s (conf=%.2f)", code, conf) + return code + return self._default_lang + + def transcribe(self, audio, init_prompt=""): + with self._lock: + lang = self._resolve_language(audio) + saved = self._asr.original_language + self._asr.original_language = lang + try: + return self._asr.transcribe(audio, init_prompt=init_prompt) + finally: + self._asr.original_language = saved +``` + +- [ ] **Step 4: Run tests to verify they pass** + +Run: `pytest tests/test_canary_backend.py -k "CanarySession or explicit_language or auto_" -v` +Expected: PASS (4 passed). + +- [ ] **Step 5: Commit** + +```bash +git add whisperlivekit/canary_backend.py tests/test_canary_backend.py +git commit -m "feat(canary): CanarySessionASR detect-once-then-lock auto language" +``` + +--- + +## Task 5: `CanaryASR` and `CanaryLID` model classes + +**Files:** +- Modify: `whisperlivekit/canary_backend.py` +- Test: `tests/test_canary_backend.py` (availability-gated integration test) + +- [ ] **Step 1: Write the failing (gated) integration test** + +Append to `tests/test_canary_backend.py`: + +```python +import importlib.util + +import pytest + +_NEMO_AVAILABLE = importlib.util.find_spec("nemo") is not None +requires_nemo = pytest.mark.skipif(not _NEMO_AVAILABLE, reason="NeMo not installed") + + +@requires_nemo +def test_canary_asr_transcribes_with_word_timestamps(): + from whisperlivekit.canary_backend import CanaryASR + from whisperlivekit.test_data import load_test_audio # 16kHz mono float32 + text + + asr = CanaryASR( + lan="en", + canary_model="nvidia/canary-1b-v2", + buffer_trimming="segment", + buffer_trimming_sec=15.0, + confidence_validation=False, + ) + audio, _reference = load_test_audio() + res = asr.transcribe(audio, source_lang="en") + tokens = asr.ts_words(res) + assert tokens, "expected at least one word token" + assert all(t.end >= t.start for t in tokens) + ends = asr.segments_end_ts(res) + assert ends and ends[-1] > 0 +``` + +Note: adapt `load_test_audio` to whatever `tests/` or `whisperlivekit/test_data.py` +exposes (see `test_pipeline.py` for the existing audio-loading helper); the point +is a real 16 kHz numpy clip. + +- [ ] **Step 2: Run test to verify it fails or skips** + +Run: `pytest tests/test_canary_backend.py::test_canary_asr_transcribes_with_word_timestamps -v` +Expected (no NeMo): SKIPPED. Expected (NeMo present, class missing): FAIL — `ImportError: cannot import name 'CanaryASR'`. + +- [ ] **Step 3: Implement `CanaryASR`** + +Append to `whisperlivekit/canary_backend.py`: + +```python +class CanaryASR: + """Shared Canary model holder implementing the LocalAgreement contract.""" + + sep = " " + SAMPLING_RATE = 16000 + + def __init__(self, lan="auto", canary_model="nvidia/canary-1b-v2", + buffer_trimming="segment", buffer_trimming_sec=15.0, + confidence_validation=False, canary_default_lang="en", + logfile=None, **_unused): + import time + + self.original_language = None if lan == "auto" else lan + self.canary_default_lang = canary_default_lang + self.backend_choice = "canary" + self.confidence_validation = confidence_validation + self.tokenizer = None # segment trimming needs no sentence tokenizer + self.buffer_trimming = buffer_trimming + self.buffer_trimming_sec = buffer_trimming_sec + self.transcribe_kargs = {} + self.lid_model = None # attached by core.py when auto detection is enabled + + from nemo.collections.asr.models import ASRModel + + t = time.time() + logger.info("Loading Canary model '%s' via NeMo...", canary_model) + if canary_model.endswith(".nemo"): + self.model = ASRModel.restore_from(canary_model) + else: + self.model = ASRModel.from_pretrained(model_name=canary_model) + self.model.eval() + logger.info("Canary model loaded in %.2fs", time.time() - t) + + def transcribe(self, audio, init_prompt="", source_lang=None): + """Run Canary on a 16kHz mono float32 numpy window. Returns hyp[0].""" + import numpy as np + + lang = source_lang or self.original_language or self.canary_default_lang + audio = np.asarray(audio, dtype=np.float32) + outputs = self.model.transcribe( + [audio], + source_lang=lang, + target_lang=lang, + timestamps=True, + batch_size=1, + verbose=False, + ) + return outputs[0] + + def _word_stamps(self, res): + ts = getattr(res, "timestamp", None) or {} + return ts.get("word") + + def _segment_stamps(self, res): + ts = getattr(res, "timestamp", None) or {} + return ts.get("segment") + + def ts_words(self, res) -> List[ASRToken]: + return canary_words_to_tokens(self._word_stamps(res)) + + def segments_end_ts(self, res) -> List[float]: + return canary_segment_end_ts(self._segment_stamps(res)) + + def use_vad(self): + logger.warning("VAD is handled upstream (Silero); CanaryASR.use_vad() is a no-op.") +``` + +- [ ] **Step 4: Implement `CanaryLID`** + +Append to `whisperlivekit/canary_backend.py`: + +```python +class CanaryLID: + """Shared spoken-language-ID model (NeMo langid_ambernet / AmberNet).""" + + SAMPLING_RATE = 16000 + + def __init__(self, lid_model="langid_ambernet", logfile=None, **_unused): + import time + + import nemo.collections.asr as nemo_asr + + t = time.time() + logger.info("Loading Canary LID model '%s' via NeMo...", lid_model) + self.model = nemo_asr.models.EncDecSpeakerLabelModel.from_pretrained( + model_name=lid_model + ) + self.model.eval() + try: + self.device = next(self.model.parameters()).device + except StopIteration: # pragma: no cover + self.device = "cpu" + logger.info("Canary LID model loaded in %.2fs", time.time() - t) + + def detect(self, audio) -> Tuple[Optional[str], float]: + """Return (canary_lang_code_or_None, confidence) for a 16kHz clip.""" + import numpy as np + import torch + + arr = np.asarray(audio, dtype=np.float32) + sig = torch.tensor(arr).unsqueeze(0).to(self.device) + sig_len = torch.tensor([sig.shape[1]]).to(self.device) + with torch.no_grad(): + logits, _ = self.model.forward(input_signal=sig, input_signal_length=sig_len) + probs = logits.softmax(dim=-1) + conf, idx = probs.max(dim=-1) + raw_code = self.model.cfg.labels[int(idx.item())] + return map_voxlingua_to_canary(raw_code), float(conf.item()) +``` + +- [ ] **Step 5: Run the gated test** + +Run: `pytest tests/test_canary_backend.py::test_canary_asr_transcribes_with_word_timestamps -v` +Expected (no NeMo): SKIPPED. Expected (NeMo + weights): PASS. + +- [ ] **Step 6: Verify the module still imports without NeMo** + +Run: `python -c "import whisperlivekit.canary_backend; print('ok')"` +Expected: `ok` (no NeMo import at module load — it is inside `__init__`/`detect`). + +- [ ] **Step 7: Commit** + +```bash +git add whisperlivekit/canary_backend.py tests/test_canary_backend.py +git commit -m "feat(canary): CanaryASR and CanaryLID NeMo model classes" +``` + +--- + +## Task 6: Wire `canary` into `core.py` (build + routing) + +**Files:** +- Modify: `whisperlivekit/core.py` (`_do_init()` around line 196–205; `online_factory()` around line 307–332) +- Test: `tests/test_canary_backend.py` + +- [ ] **Step 1: Write the failing routing test (no NeMo needed)** + +Append to `tests/test_canary_backend.py`: + +```python +from argparse import Namespace + + +class _FakeCanaryASR: + """Stands in for a loaded CanaryASR so online_factory needs no NeMo.""" + sep = " " + + def __init__(self): + self.original_language = None + self.lid_model = _StubLID() + self.canary_default_lang = "en" + self.confidence_validation = False + self.tokenizer = None + self.buffer_trimming = "segment" + self.buffer_trimming_sec = 15.0 + + def transcribe(self, audio, init_prompt=""): + return "x" + + +def test_online_factory_routes_canary_to_localagreement(): + from whisperlivekit.canary_backend import CanarySessionASR + from whisperlivekit.core import online_factory + from whisperlivekit.local_agreement.online_asr import OnlineASRProcessor + + args = Namespace( + backend="canary", backend_policy="simulstreaming", lan="auto", + canary_default_lang="en", canary_lid_min_sec=2.0, canary_lid_min_conf=0.5, + ) + asr = _FakeCanaryASR() + processor = online_factory(args, asr, language="auto") + assert isinstance(processor, OnlineASRProcessor) + assert isinstance(processor.asr, CanarySessionASR) +``` + +- [ ] **Step 2: Run test to verify it fails** + +Run: `pytest tests/test_canary_backend.py::test_online_factory_routes_canary_to_localagreement -v` +Expected: FAIL — canary falls through to the SimulStreaming branch (`backend_policy == "simulstreaming"`), so `processor` is a `SimulStreamingOnlineProcessor`, not `OnlineASRProcessor` wrapping `CanarySessionASR`. + +- [ ] **Step 3: Add the `_do_init()` build branch** + +In `whisperlivekit/core.py`, inside `_do_init()`, add this branch alongside the other explicit-backend branches — after the `elif config.backend == "voxtral":` block and before `elif config.backend_policy == "simulstreaming":`: + +```python + elif config.backend == "canary": + from whisperlivekit.canary_backend import CanaryASR, CanaryLID + self.tokenizer = None + self.asr = CanaryASR( + lan=config.lan, + canary_model=config.canary_model, + canary_default_lang=config.canary_default_lang, + buffer_trimming=config.buffer_trimming, + buffer_trimming_sec=config.buffer_trimming_sec, + confidence_validation=config.confidence_validation, + ) + # Load the LID model so any session may request auto-detection. + self.asr.lid_model = CanaryLID(lid_model=config.canary_lid_model) + logger.info("Using LocalAgreement policy with Canary backend") +``` + +- [ ] **Step 4: Add the `online_factory()` routing branch** + +In `whisperlivekit/core.py`, inside `online_factory()`, add this **before** the existing `if language is not None:` proxy-wrap block near the top of the function: + +```python + backend = getattr(args, 'backend', None) + if backend == "canary": + from whisperlivekit.canary_backend import CanarySessionASR + effective = language if language is not None else getattr(args, 'lan', 'auto') + wrapped = CanarySessionASR( + asr, + effective, + lid=getattr(asr, 'lid_model', None), + default_lang=getattr(args, 'canary_default_lang', 'en'), + lid_min_sec=getattr(args, 'canary_lid_min_sec', 2.0), + lid_min_conf=getattr(args, 'canary_lid_min_conf', 0.5), + ) + return OnlineASRProcessor(wrapped) +``` + +Note: `OnlineASRProcessor` is already imported at the top of `core.py` (line 7). The existing `backend = getattr(args, 'backend', None)` line later in the function becomes redundant; leave the later per-backend `if` checks as-is (this early return handles canary first). + +- [ ] **Step 5: Run test to verify it passes** + +Run: `pytest tests/test_canary_backend.py::test_online_factory_routes_canary_to_localagreement -v` +Expected: PASS. + +- [ ] **Step 6: Run the full canary test file** + +Run: `pytest tests/test_canary_backend.py -v` +Expected: PASS (integration test SKIPPED if NeMo absent; all others pass). + +- [ ] **Step 7: Commit** + +```bash +git add whisperlivekit/core.py tests/test_canary_backend.py +git commit -m "feat(canary): route canary backend to LocalAgreement in core" +``` + +--- + +## Task 7: Optional dependency extra, end-to-end test, and docs + +**Files:** +- Modify: `pyproject.toml` (`[project.optional-dependencies]` around line 38) +- Modify: `README.md` (backend list / usage section) +- Test: `tests/test_canary_backend.py` (gated end-to-end via `TestHarness`) + +- [ ] **Step 1: Add the `canary` optional extra** + +In `pyproject.toml` under `[project.optional-dependencies]`, add: + +```toml +canary = ["nemo_toolkit[asr]>=2.5.0"] +``` + +(If 2.5 is not yet released at implementation time, pin the known-good main-branch +install per the spec's NeMo-version risk note and document it in the README.) + +- [ ] **Step 2: Write the failing (gated) end-to-end test** + +Append to `tests/test_canary_backend.py`: + +```python +@requires_nemo +def test_canary_end_to_end_via_testharness(): + import asyncio + + from whisperlivekit import TestHarness + + async def _run(): + async with TestHarness(backend="canary", lan="en") as h: + await h.feed("audio.wav", speed=1.0) # replace with a real fixture path + await h.drain(3.0) + result = await h.finish() + assert result.text.strip(), "expected non-empty transcription" + + asyncio.run(_run()) +``` + +Note: use whatever real audio fixture the existing suite uses (see `test_pipeline.py` +/ `whisperlivekit/test_data.py`). `TestHarness` calls `TranscriptionEngine.reset()` +internally to switch backends — confirm against the harness API before finalizing. + +- [ ] **Step 3: Run the end-to-end test** + +Run: `pytest tests/test_canary_backend.py::test_canary_end_to_end_via_testharness -v` +Expected (no NeMo): SKIPPED. Expected (NeMo + CUDA + weights): PASS. + +- [ ] **Step 4: Document the backend in the README** + +Add `canary` to the backend list/table in `README.md` with a short usage note: + +```markdown +- **canary** — NVIDIA Canary-1b-v2 (NeMo, CUDA). 25 European languages, native + word timestamps, LocalAgreement streaming, auto language detection via AmberNet. + Install: `pip install -e ".[canary]"`. Run: `wlk --backend canary --language auto`. +``` + +- [ ] **Step 5: Run the full suite for regressions** + +Run: `pytest tests/ -v` +Expected: PASS (no regressions; canary integration tests SKIPPED without NeMo). + +- [ ] **Step 6: Commit** + +```bash +git add pyproject.toml README.md tests/test_canary_backend.py +git commit -m "feat(canary): optional extra, end-to-end test, and docs" +``` + +--- + +## Self-Review Notes + +- **Spec coverage:** backend + LocalAgreement routing (Tasks 5–6), native word/segment timestamps (Tasks 2, 5), explicit per-session language via proxy (Task 4), AmberNet detect-once-then-lock auto (Tasks 3–5), config/CLI surface (Task 1), optional dependency + lazy import (Tasks 2, 7), testing incl. gated E2E (Tasks 5, 7). Non-goals (AST translation, `canary-streaming`, re-detection) intentionally excluded. +- **Naming consistency:** helpers `canary_words_to_tokens` / `canary_segment_end_ts` / `map_voxlingua_to_canary`, classes `CanaryASR` / `CanaryLID` / `CanarySessionASR`, attribute `asr.lid_model`, config `canary_model` / `canary_default_lang` / `canary_lid_model` / `canary_lid_min_sec` / `canary_lid_min_conf` — used identically across tasks. +- **Known risks to validate during implementation** (from spec): exact NeMo timestamp-object shape (`res.timestamp['word']` vs a Hypothesis attribute), NeMo version for timestamps, `langid_ambernet` label codes vs `_VOXLINGUA_TO_CANARY` map, whether Canary exposes any prompt-conditioning (currently `init_prompt` accepted and ignored), and the real audio-fixture / `TestHarness.reset` API used by the existing suite. +``` From fe7ba5a06e8c70a38c47681c9c4c9fb9eaa53623 Mon Sep 17 00:00:00 2001 From: wuxuedaifu Date: Sun, 19 Jul 2026 00:08:16 +0400 Subject: [PATCH 03/16] feat(canary): add canary backend config fields and CLI args Adds the canary_* fields to WhisperLiveKitConfig and a matching --canary-* argument group in parse_args, plus "canary" as a valid --backend choice. No model code yet -- config plumbing only, per Task 1 of the Canary-1b-v2 backend plan. --- tests/test_canary_backend.py | 33 ++++++++++++++++++++++++++++ whisperlivekit/config.py | 7 ++++++ whisperlivekit/parse_args.py | 42 +++++++++++++++++++++++++++++++++++- 3 files changed, 81 insertions(+), 1 deletion(-) create mode 100644 tests/test_canary_backend.py diff --git a/tests/test_canary_backend.py b/tests/test_canary_backend.py new file mode 100644 index 00000000..d76673d1 --- /dev/null +++ b/tests/test_canary_backend.py @@ -0,0 +1,33 @@ +def test_parse_args_accepts_canary_options(monkeypatch): + from whisperlivekit.parse_args import parse_args + + monkeypatch.setattr( + "sys.argv", + [ + "whisperlivekit-server", + "--backend", "canary", + "--canary-model", "nvidia/canary-1b-v2", + "--canary-default-lang", "de", + "--canary-lid-model", "langid_ambernet", + "--canary-lid-min-sec", "3.0", + "--canary-lid-min-conf", "0.6", + ], + ) + cfg = parse_args() + assert cfg.backend == "canary" + assert cfg.canary_model == "nvidia/canary-1b-v2" + assert cfg.canary_default_lang == "de" + assert cfg.canary_lid_model == "langid_ambernet" + assert cfg.canary_lid_min_sec == 3.0 + assert cfg.canary_lid_min_conf == 0.6 + + +def test_canary_config_defaults(): + from whisperlivekit.config import WhisperLiveKitConfig + + cfg = WhisperLiveKitConfig.from_kwargs(backend="canary") + assert cfg.canary_model == "nvidia/canary-1b-v2" + assert cfg.canary_default_lang == "en" + assert cfg.canary_lid_model == "langid_ambernet" + assert cfg.canary_lid_min_sec == 2.0 + assert cfg.canary_lid_min_conf == 0.5 diff --git a/whisperlivekit/config.py b/whisperlivekit/config.py index 863c70c9..2de3cdbd 100644 --- a/whisperlivekit/config.py +++ b/whisperlivekit/config.py @@ -148,6 +148,13 @@ class WhisperLiveKitConfig: qwen3_streaming_tower_checkpoint: str = "" qwen3_streaming_block_frames: int = 192 + # Canary backend (NeMo EncDecMultiTaskModel on LocalAgreement) + canary_model: str = "nvidia/canary-1b-v2" + canary_default_lang: str = "en" + canary_lid_model: str = "langid_ambernet" + canary_lid_min_sec: float = 2.0 + canary_lid_min_conf: float = 0.5 + def __post_init__(self): # .en model suffix forces English if self.model_size and self.model_size.endswith(".en"): diff --git a/whisperlivekit/parse_args.py b/whisperlivekit/parse_args.py index 102bd91f..9842880a 100644 --- a/whisperlivekit/parse_args.py +++ b/whisperlivekit/parse_args.py @@ -206,7 +206,7 @@ def parse_args(): "--backend", type=str, default="auto", - choices=["auto", "mlx-whisper", "faster-whisper", "whisper", "openai-api", "voxtral", "voxtral-mlx", "qwen3-vllm", "qwen3-vllm-metal", "qwen3-streaming"], + choices=["auto", "mlx-whisper", "faster-whisper", "whisper", "openai-api", "voxtral", "voxtral-mlx", "qwen3-vllm", "qwen3-vllm-metal", "qwen3-streaming", "canary"], help="Select the ASR backend implementation. Use 'qwen3-vllm' for Qwen3-ASR through in-process vLLM with ForcedAligner on GPU. Use 'qwen3-vllm-metal' for Qwen3-ASR through vllm-metal in-process STT on Apple Silicon. Use 'qwen3-streaming' for Qwen3-ASR through plain HF Transformers with a bounded-recompute audio cache (CUDA/MPS/CPU, no vLLM; requires an explicit --language).", ) parser.add_argument( @@ -782,6 +782,46 @@ def parse_args(): help="600M or 1.3B", ) + # Canary backend arguments + canary_group = parser.add_argument_group( + "Canary backend arguments (only used with --backend canary)" + ) + canary_group.add_argument( + "--canary-model", + type=str, + default="nvidia/canary-1b-v2", + dest="canary_model", + help="Canary model: HuggingFace/NGC id or local .nemo path. Default nvidia/canary-1b-v2.", + ) + canary_group.add_argument( + "--canary-default-lang", + type=str, + default="en", + dest="canary_default_lang", + help="Fallback source language used while auto-detecting (and if detection stays low-confidence).", + ) + canary_group.add_argument( + "--canary-lid-model", + type=str, + default="langid_ambernet", + dest="canary_lid_model", + help="NeMo spoken-language-ID model used for auto detection (EncDecSpeakerLabelModel).", + ) + canary_group.add_argument( + "--canary-lid-min-sec", + type=float, + default=2.0, + dest="canary_lid_min_sec", + help="Minimum seconds of buffered audio before language detection runs.", + ) + canary_group.add_argument( + "--canary-lid-min-conf", + type=float, + default=0.5, + dest="canary_lid_min_conf", + help="Minimum LID confidence (0-1) required to lock the detected language.", + ) + translation_group = parser.add_argument_group("Translation backend") translation_group.add_argument( "--translation-backend", From 9f22499a82da2e80edf34d1ca4292319b01fa5f2 Mon Sep 17 00:00:00 2001 From: wuxuedaifu Date: Sun, 19 Jul 2026 01:06:17 +0400 Subject: [PATCH 04/16] feat(canary): pure word/segment timestamp mapping helpers --- tests/test_canary_backend.py | 31 +++++++++++++++ whisperlivekit/canary_backend.py | 66 ++++++++++++++++++++++++++++++++ 2 files changed, 97 insertions(+) create mode 100644 whisperlivekit/canary_backend.py diff --git a/tests/test_canary_backend.py b/tests/test_canary_backend.py index d76673d1..06c37230 100644 --- a/tests/test_canary_backend.py +++ b/tests/test_canary_backend.py @@ -31,3 +31,34 @@ def test_canary_config_defaults(): assert cfg.canary_lid_model == "langid_ambernet" assert cfg.canary_lid_min_sec == 2.0 assert cfg.canary_lid_min_conf == 0.5 + + +def test_canary_words_to_tokens_maps_word_timestamps(): + from whisperlivekit.canary_backend import canary_words_to_tokens + + word_stamps = [ + {"word": "hello", "start": 0.0, "end": 0.4}, + {"word": "world", "start": 0.4, "end": 0.9}, + ] + tokens = canary_words_to_tokens(word_stamps) + assert [t.text for t in tokens] == ["hello", "world"] + assert tokens[0].start == 0.0 and tokens[0].end == 0.4 + assert tokens[1].start == 0.4 and tokens[1].end == 0.9 + + +def test_canary_words_to_tokens_handles_missing_stamps(): + from whisperlivekit.canary_backend import canary_words_to_tokens + + assert canary_words_to_tokens(None) == [] + assert canary_words_to_tokens([]) == [] + + +def test_canary_segment_end_ts(): + from whisperlivekit.canary_backend import canary_segment_end_ts + + seg_stamps = [ + {"segment": "hello world.", "start": 0.0, "end": 0.9}, + {"segment": "bye.", "start": 1.0, "end": 1.5}, + ] + assert canary_segment_end_ts(seg_stamps) == [0.9, 1.5] + assert canary_segment_end_ts(None) == [] diff --git a/whisperlivekit/canary_backend.py b/whisperlivekit/canary_backend.py new file mode 100644 index 00000000..a1d13973 --- /dev/null +++ b/whisperlivekit/canary_backend.py @@ -0,0 +1,66 @@ +"""NVIDIA Canary-1b-v2 backend for WhisperLiveKit (LocalAgreement policy). + +Contains: + - CanaryASR: shared NeMo EncDecMultiTaskModel implementing the LocalAgreement + transcribe()/ts_words()/segments_end_ts() contract. + - CanaryLID: shared NeMo language-ID model (langid_ambernet). + - CanarySessionASR: per-session proxy that resolves the source language, + auto-detecting once via CanaryLID for ``auto`` sessions then locking it. + +NeMo and torch are imported lazily inside methods so this module imports fine +on machines without ``nemo_toolkit`` installed (routing/unit tests, non-canary +deployments). +""" + +import logging +from typing import List, Optional, Tuple + +from whisperlivekit.session_asr_proxy import SessionASRProxy +from whisperlivekit.timed_objects import ASRToken + +logger = logging.getLogger(__name__) + + +# Canary-1b-v2's 25 supported source-language codes. +CANARY_LANGS = { + "bg", "hr", "cs", "da", "nl", "en", "et", "fi", "fr", "de", "el", "hu", + "it", "lv", "lt", "mt", "pl", "pt", "ro", "ru", "sk", "sl", "es", "sv", "uk", +} + +# VoxLingua107 (AmberNet) codes that differ from Canary's expected code. +# VoxLingua107 is mostly ISO 639-1 already, so the map is small; extend after +# validating against the actual langid_ambernet label set. +_VOXLINGUA_TO_CANARY = { + # placeholder for known mismatches, e.g. "gr": "el" +} + + +def map_voxlingua_to_canary(code: str) -> Optional[str]: + """Map an AmberNet/VoxLingua107 language code to Canary's source_lang set. + + Returns the mapped code if Canary supports it, else None. + """ + if not code: + return None + code = _VOXLINGUA_TO_CANARY.get(code, code) + return code if code in CANARY_LANGS else None + + +def canary_words_to_tokens(word_stamps) -> List[ASRToken]: + """Convert Canary ``timestamp['word']`` entries to ASRToken objects.""" + if not word_stamps: + return [] + tokens: List[ASRToken] = [] + for w in word_stamps: + text = w.get("word") + if not text: + continue + tokens.append(ASRToken(w["start"], w["end"], text)) + return tokens + + +def canary_segment_end_ts(segment_stamps) -> List[float]: + """Extract segment end times from Canary ``timestamp['segment']`` entries.""" + if not segment_stamps: + return [] + return [s["end"] for s in segment_stamps] From 2fa9bb7348b1d5dd196ba03fdabf954654b27b5f Mon Sep 17 00:00:00 2001 From: wuxuedaifu Date: Sun, 19 Jul 2026 03:56:21 +0400 Subject: [PATCH 05/16] test(canary): lock voxlingua->canary code mapping contract --- tests/test_canary_backend.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/tests/test_canary_backend.py b/tests/test_canary_backend.py index 06c37230..e0e3c807 100644 --- a/tests/test_canary_backend.py +++ b/tests/test_canary_backend.py @@ -62,3 +62,19 @@ def test_canary_segment_end_ts(): ] assert canary_segment_end_ts(seg_stamps) == [0.9, 1.5] assert canary_segment_end_ts(None) == [] + + +def test_map_voxlingua_to_canary_supported(): + from whisperlivekit.canary_backend import map_voxlingua_to_canary + + assert map_voxlingua_to_canary("en") == "en" + assert map_voxlingua_to_canary("de") == "de" + assert map_voxlingua_to_canary("uk") == "uk" + + +def test_map_voxlingua_to_canary_unsupported_returns_none(): + from whisperlivekit.canary_backend import map_voxlingua_to_canary + + assert map_voxlingua_to_canary("zh") is None # Chinese not in Canary's 25 + assert map_voxlingua_to_canary("") is None + assert map_voxlingua_to_canary(None) is None From 3bbc4702f900ff018c79f5d196c9ff4912a803ed Mon Sep 17 00:00:00 2001 From: wuxuedaifu Date: Sun, 19 Jul 2026 04:19:06 +0400 Subject: [PATCH 06/16] feat(canary): CanarySessionASR detect-once-then-lock auto language --- tests/test_canary_backend.py | 78 ++++++++++++++++++++++++++++++++ whisperlivekit/canary_backend.py | 52 +++++++++++++++++++++ 2 files changed, 130 insertions(+) diff --git a/tests/test_canary_backend.py b/tests/test_canary_backend.py index e0e3c807..dcf12d70 100644 --- a/tests/test_canary_backend.py +++ b/tests/test_canary_backend.py @@ -78,3 +78,81 @@ def test_map_voxlingua_to_canary_unsupported_returns_none(): assert map_voxlingua_to_canary("zh") is None # Chinese not in Canary's 25 assert map_voxlingua_to_canary("") is None assert map_voxlingua_to_canary(None) is None + + +import numpy as np + + +class _RecordingCanaryASR: + """Minimal stand-in for CanaryASR that records the source language used.""" + sep = " " + + def __init__(self): + self.original_language = None + self.calls = [] + + def transcribe(self, audio, init_prompt=""): + self.calls.append(self.original_language) + return f"decoded:{self.original_language}" + + +class _StubLID: + def __init__(self, code="de", conf=0.9): + self._code, self._conf = code, conf + self.n_calls = 0 + + def detect(self, audio): + self.n_calls += 1 + return self._code, self._conf + + +def _audio(seconds): + return np.zeros(int(seconds * 16000), dtype=np.float32) + + +def test_explicit_language_bypasses_lid(): + from whisperlivekit.canary_backend import CanarySessionASR + + asr = _RecordingCanaryASR() + lid = _StubLID() + session = CanarySessionASR(asr, "fr", lid=lid, default_lang="en", + lid_min_sec=2.0, lid_min_conf=0.5) + session.transcribe(_audio(5)) + assert asr.calls == ["fr"] + assert lid.n_calls == 0 + + +def test_auto_uses_default_until_enough_audio(): + from whisperlivekit.canary_backend import CanarySessionASR + + asr = _RecordingCanaryASR() + lid = _StubLID(code="de", conf=0.9) + session = CanarySessionASR(asr, "auto", lid=lid, default_lang="en", + lid_min_sec=2.0, lid_min_conf=0.5) + session.transcribe(_audio(1.0)) # below lid_min_sec -> default, no LID + assert asr.calls == ["en"] + assert lid.n_calls == 0 + + +def test_auto_detects_once_then_locks(): + from whisperlivekit.canary_backend import CanarySessionASR + + asr = _RecordingCanaryASR() + lid = _StubLID(code="de", conf=0.9) + session = CanarySessionASR(asr, "auto", lid=lid, default_lang="en", + lid_min_sec=2.0, lid_min_conf=0.5) + session.transcribe(_audio(3.0)) # detects -> "de" + session.transcribe(_audio(4.0)) # locked -> "de", no second detect + assert asr.calls == ["de", "de"] + assert lid.n_calls == 1 + + +def test_auto_low_confidence_stays_on_default(): + from whisperlivekit.canary_backend import CanarySessionASR + + asr = _RecordingCanaryASR() + lid = _StubLID(code="de", conf=0.2) # below lid_min_conf + session = CanarySessionASR(asr, "auto", lid=lid, default_lang="en", + lid_min_sec=2.0, lid_min_conf=0.5) + session.transcribe(_audio(3.0)) + assert asr.calls == ["en"] # not locked, retried later diff --git a/whisperlivekit/canary_backend.py b/whisperlivekit/canary_backend.py index a1d13973..665d7ee2 100644 --- a/whisperlivekit/canary_backend.py +++ b/whisperlivekit/canary_backend.py @@ -64,3 +64,55 @@ def canary_segment_end_ts(segment_stamps) -> List[float]: if not segment_stamps: return [] return [s["end"] for s in segment_stamps] + + +class CanarySessionASR(SessionASRProxy): + """Per-session Canary proxy with auto language detection. + + For explicit-language sessions this behaves like SessionASRProxy, forcing + ``source_lang`` to the chosen code. For ``auto`` sessions it uses + ``default_lang`` until ``lid_min_sec`` of audio is buffered, then runs the + shared LID once; on a confident result it locks that language for the rest + of the session. + """ + + SAMPLING_RATE = 16000 + + def __init__(self, asr, language, lid=None, default_lang="en", + lid_min_sec=2.0, lid_min_conf=0.5): + super().__init__(asr, language) + is_auto = (language is None) or (language == "auto") + object.__setattr__(self, "_is_auto", is_auto) + object.__setattr__(self, "_lid", lid) + object.__setattr__(self, "_default_lang", default_lang) + object.__setattr__(self, "_lid_min_sec", lid_min_sec) + object.__setattr__(self, "_lid_min_conf", lid_min_conf) + object.__setattr__(self, "_detected_lang", None) + + def _resolve_language(self, audio) -> str: + # Explicit language: SessionASRProxy stored it as _session_language. + if not self._is_auto: + return self._session_language + if self._detected_lang is not None: + return self._detected_lang + if self._lid is not None and len(audio) >= self._lid_min_sec * self.SAMPLING_RATE: + try: + code, conf = self._lid.detect(audio) + except Exception as e: # noqa: BLE001 + logger.warning("Canary LID failed: %s", e) + code, conf = None, 0.0 + if code is not None and conf >= self._lid_min_conf: + object.__setattr__(self, "_detected_lang", code) + logger.info("Canary auto-detected language: %s (conf=%.2f)", code, conf) + return code + return self._default_lang + + def transcribe(self, audio, init_prompt=""): + with self._lock: + lang = self._resolve_language(audio) + saved = self._asr.original_language + self._asr.original_language = lang + try: + return self._asr.transcribe(audio, init_prompt=init_prompt) + finally: + self._asr.original_language = saved From 53a1829852d387c80a8619ff684fef3dbd6bfc6f Mon Sep 17 00:00:00 2001 From: wuxuedaifu Date: Sun, 19 Jul 2026 04:28:19 +0400 Subject: [PATCH 07/16] harden(canary): validate detected code + cover LID failure paths --- tests/test_canary_backend.py | 36 +++++++++++++++++++++++++++++--- whisperlivekit/canary_backend.py | 4 +++- 2 files changed, 36 insertions(+), 4 deletions(-) diff --git a/tests/test_canary_backend.py b/tests/test_canary_backend.py index dcf12d70..cd0deb04 100644 --- a/tests/test_canary_backend.py +++ b/tests/test_canary_backend.py @@ -1,3 +1,6 @@ +import numpy as np + + def test_parse_args_accepts_canary_options(monkeypatch): from whisperlivekit.parse_args import parse_args @@ -80,9 +83,6 @@ def test_map_voxlingua_to_canary_unsupported_returns_none(): assert map_voxlingua_to_canary(None) is None -import numpy as np - - class _RecordingCanaryASR: """Minimal stand-in for CanaryASR that records the source language used.""" sep = " " @@ -156,3 +156,33 @@ def test_auto_low_confidence_stays_on_default(): lid_min_sec=2.0, lid_min_conf=0.5) session.transcribe(_audio(3.0)) assert asr.calls == ["en"] # not locked, retried later + + +def test_auto_lid_exception_stays_on_default_and_retries(): + from whisperlivekit.canary_backend import CanarySessionASR + + class _RaisingLID: + def __init__(self): + self.n_calls = 0 + def detect(self, audio): + self.n_calls += 1 + raise RuntimeError("boom") + + asr = _RecordingCanaryASR() + lid = _RaisingLID() + session = CanarySessionASR(asr, "auto", lid=lid, default_lang="en", + lid_min_sec=2.0, lid_min_conf=0.5) + session.transcribe(_audio(3.0)) # detect raises -> default, not locked + session.transcribe(_audio(3.0)) # retries (still not locked) + assert asr.calls == ["en", "en"] + assert lid.n_calls == 2 # retried, never locked + + +def test_auto_with_no_lid_uses_default(): + from whisperlivekit.canary_backend import CanarySessionASR + + asr = _RecordingCanaryASR() + session = CanarySessionASR(asr, "auto", lid=None, default_lang="en", + lid_min_sec=2.0, lid_min_conf=0.5) + session.transcribe(_audio(5.0)) + assert asr.calls == ["en"] diff --git a/whisperlivekit/canary_backend.py b/whisperlivekit/canary_backend.py index 665d7ee2..868991b8 100644 --- a/whisperlivekit/canary_backend.py +++ b/whisperlivekit/canary_backend.py @@ -95,13 +95,15 @@ def _resolve_language(self, audio) -> str: return self._session_language if self._detected_lang is not None: return self._detected_lang + # audio is the LocalAgreement growing window, so len(audio) is the + # accumulated buffer length; detection waits for it to reach lid_min_sec. if self._lid is not None and len(audio) >= self._lid_min_sec * self.SAMPLING_RATE: try: code, conf = self._lid.detect(audio) except Exception as e: # noqa: BLE001 logger.warning("Canary LID failed: %s", e) code, conf = None, 0.0 - if code is not None and conf >= self._lid_min_conf: + if code and conf >= self._lid_min_conf and code in CANARY_LANGS: object.__setattr__(self, "_detected_lang", code) logger.info("Canary auto-detected language: %s (conf=%.2f)", code, conf) return code From 00b8efbf907b410e38c131995ddeea3839090030 Mon Sep 17 00:00:00 2001 From: wuxuedaifu Date: Sun, 19 Jul 2026 04:31:25 +0400 Subject: [PATCH 08/16] feat(canary): CanaryASR and CanaryLID NeMo model classes Adds the shared model holders that implement the LocalAgreement backend contract for Canary: CanaryASR wraps NeMo's ASRModel.transcribe() with word/segment timestamp extraction via the existing pure helpers, and CanaryLID wraps EncDecSpeakerLabelModel for spoken-language detection. Both import nemo/torch lazily so the module still imports cleanly without nemo_toolkit installed. --- tests/test_canary_backend.py | 32 ++++++++++ whisperlivekit/canary_backend.py | 105 +++++++++++++++++++++++++++++++ 2 files changed, 137 insertions(+) diff --git a/tests/test_canary_backend.py b/tests/test_canary_backend.py index cd0deb04..89377b7c 100644 --- a/tests/test_canary_backend.py +++ b/tests/test_canary_backend.py @@ -186,3 +186,35 @@ def test_auto_with_no_lid_uses_default(): lid_min_sec=2.0, lid_min_conf=0.5) session.transcribe(_audio(5.0)) assert asr.calls == ["en"] + + +import importlib.util + +import pytest + +_NEMO_AVAILABLE = importlib.util.find_spec("nemo") is not None +requires_nemo = pytest.mark.skipif(not _NEMO_AVAILABLE, reason="NeMo not installed") + + +@requires_nemo +def test_canary_asr_transcribes_with_word_timestamps(): + import soundfile as sf + + from whisperlivekit.canary_backend import CanaryASR + from whisperlivekit.test_data import get_sample # real 16kHz mono clip + reference text + + asr = CanaryASR( + lan="en", + canary_model="nvidia/canary-1b-v2", + buffer_trimming="segment", + buffer_trimming_sec=15.0, + confidence_validation=False, + ) + sample = get_sample("librispeech_short") + audio, _sr = sf.read(sample.path, dtype="float32") + res = asr.transcribe(audio, source_lang="en") + tokens = asr.ts_words(res) + assert tokens, "expected at least one word token" + assert all(t.end >= t.start for t in tokens) + ends = asr.segments_end_ts(res) + assert ends and ends[-1] > 0 diff --git a/whisperlivekit/canary_backend.py b/whisperlivekit/canary_backend.py index 868991b8..cd6dbde3 100644 --- a/whisperlivekit/canary_backend.py +++ b/whisperlivekit/canary_backend.py @@ -118,3 +118,108 @@ def transcribe(self, audio, init_prompt=""): return self._asr.transcribe(audio, init_prompt=init_prompt) finally: self._asr.original_language = saved + + +class CanaryASR: + """Shared Canary model holder implementing the LocalAgreement contract.""" + + sep = " " + SAMPLING_RATE = 16000 + + def __init__(self, lan="auto", canary_model="nvidia/canary-1b-v2", + buffer_trimming="segment", buffer_trimming_sec=15.0, + confidence_validation=False, canary_default_lang="en", + logfile=None, **_unused): + import time + + self.original_language = None if lan == "auto" else lan + self.canary_default_lang = canary_default_lang + self.backend_choice = "canary" + self.confidence_validation = confidence_validation + self.tokenizer = None # segment trimming needs no sentence tokenizer + self.buffer_trimming = buffer_trimming + self.buffer_trimming_sec = buffer_trimming_sec + self.transcribe_kargs = {} + self.lid_model = None # attached by core.py when auto detection is enabled + + from nemo.collections.asr.models import ASRModel + + t = time.time() + logger.info("Loading Canary model '%s' via NeMo...", canary_model) + if canary_model.endswith(".nemo"): + self.model = ASRModel.restore_from(canary_model) + else: + self.model = ASRModel.from_pretrained(model_name=canary_model) + self.model.eval() + logger.info("Canary model loaded in %.2fs", time.time() - t) + + def transcribe(self, audio, init_prompt="", source_lang=None): + """Run Canary on a 16kHz mono float32 numpy window. Returns hyp[0].""" + import numpy as np + + lang = source_lang or self.original_language or self.canary_default_lang + audio = np.asarray(audio, dtype=np.float32) + outputs = self.model.transcribe( + [audio], + source_lang=lang, + target_lang=lang, + timestamps=True, + batch_size=1, + verbose=False, + ) + return outputs[0] + + def _word_stamps(self, res): + ts = getattr(res, "timestamp", None) or {} + return ts.get("word") + + def _segment_stamps(self, res): + ts = getattr(res, "timestamp", None) or {} + return ts.get("segment") + + def ts_words(self, res) -> List[ASRToken]: + return canary_words_to_tokens(self._word_stamps(res)) + + def segments_end_ts(self, res) -> List[float]: + return canary_segment_end_ts(self._segment_stamps(res)) + + def use_vad(self): + logger.warning("VAD is handled upstream (Silero); CanaryASR.use_vad() is a no-op.") + + +class CanaryLID: + """Shared spoken-language-ID model (NeMo langid_ambernet / AmberNet).""" + + SAMPLING_RATE = 16000 + + def __init__(self, lid_model="langid_ambernet", logfile=None, **_unused): + import time + + import nemo.collections.asr as nemo_asr + + t = time.time() + logger.info("Loading Canary LID model '%s' via NeMo...", lid_model) + self.model = nemo_asr.models.EncDecSpeakerLabelModel.from_pretrained( + model_name=lid_model + ) + self.model.eval() + try: + self.device = next(self.model.parameters()).device + except StopIteration: # pragma: no cover + self.device = "cpu" + logger.info("Canary LID model loaded in %.2fs", time.time() - t) + + def detect(self, audio) -> Tuple[Optional[str], float]: + """Return (canary_lang_code_or_None, confidence) for a 16kHz clip.""" + import numpy as np + import torch + + arr = np.asarray(audio, dtype=np.float32) + sig = torch.tensor(arr).unsqueeze(0).to(self.device) + sig_len = torch.tensor([sig.shape[1]]).to(self.device) + with torch.no_grad(): + logits, _ = self.model.forward(input_signal=sig, input_signal_length=sig_len) + probs = logits.softmax(dim=-1) + conf, idx = probs.max(dim=-1) + raw_code = self.model.cfg.labels[int(idx.item())] + return map_voxlingua_to_canary(raw_code), float(conf.item()) From e26595c89650e29fff6889288c84ee444171d434 Mon Sep 17 00:00:00 2001 From: wuxuedaifu Date: Sun, 19 Jul 2026 09:24:09 +0400 Subject: [PATCH 09/16] harden(canary): guard empty transcribe output --- whisperlivekit/canary_backend.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/whisperlivekit/canary_backend.py b/whisperlivekit/canary_backend.py index cd6dbde3..586094dd 100644 --- a/whisperlivekit/canary_backend.py +++ b/whisperlivekit/canary_backend.py @@ -167,6 +167,11 @@ def transcribe(self, audio, init_prompt="", source_lang=None): batch_size=1, verbose=False, ) + # An all-silence / empty window can yield no hypotheses. ts_words() and + # segments_end_ts() both tolerate None (their helpers null-guard), so + # returning None here degrades cleanly instead of raising IndexError. + if not outputs: + return None return outputs[0] def _word_stamps(self, res): From 504fac3b20f7bc20a55d65abb9e93c0db69bf9a2 Mon Sep 17 00:00:00 2001 From: wuxuedaifu Date: Sun, 19 Jul 2026 09:27:59 +0400 Subject: [PATCH 10/16] feat(canary): route canary backend to LocalAgreement in core _do_init() now instantiates CanaryASR + CanaryLID when backend="canary", and online_factory() wraps sessions with CanarySessionASR (handling language=None by falling back to args.lan) before the generic SessionASRProxy wrap, so per-session LID/auto-detect works. --- tests/test_canary_backend.py | 34 ++++++++++++++++++++++++++++++++++ whisperlivekit/core.py | 28 ++++++++++++++++++++++++++++ 2 files changed, 62 insertions(+) diff --git a/tests/test_canary_backend.py b/tests/test_canary_backend.py index 89377b7c..a8292497 100644 --- a/tests/test_canary_backend.py +++ b/tests/test_canary_backend.py @@ -1,3 +1,5 @@ +from argparse import Namespace + import numpy as np @@ -218,3 +220,35 @@ def test_canary_asr_transcribes_with_word_timestamps(): assert all(t.end >= t.start for t in tokens) ends = asr.segments_end_ts(res) assert ends and ends[-1] > 0 + + +class _FakeCanaryASR: + """Stands in for a loaded CanaryASR so online_factory needs no NeMo.""" + sep = " " + + def __init__(self): + self.original_language = None + self.lid_model = _StubLID() + self.canary_default_lang = "en" + self.confidence_validation = False + self.tokenizer = None + self.buffer_trimming = "segment" + self.buffer_trimming_sec = 15.0 + + def transcribe(self, audio, init_prompt=""): + return "x" + + +def test_online_factory_routes_canary_to_localagreement(): + from whisperlivekit.canary_backend import CanarySessionASR + from whisperlivekit.core import online_factory + from whisperlivekit.local_agreement.online_asr import OnlineASRProcessor + + args = Namespace( + backend="canary", backend_policy="simulstreaming", lan="auto", + canary_default_lang="en", canary_lid_min_sec=2.0, canary_lid_min_conf=0.5, + ) + asr = _FakeCanaryASR() + processor = online_factory(args, asr, language="auto") + assert isinstance(processor, OnlineASRProcessor) + assert isinstance(processor.asr, CanarySessionASR) diff --git a/whisperlivekit/core.py b/whisperlivekit/core.py index 26a1121a..de5e6277 100644 --- a/whisperlivekit/core.py +++ b/whisperlivekit/core.py @@ -203,6 +203,20 @@ def _do_init(self, config=None, **kwargs): self.tokenizer = None self.asr = VoxtralHFStreamingASR(**transcription_common_params) logger.info("Using Voxtral HF Transformers streaming backend") + elif config.backend == "canary": + from whisperlivekit.canary_backend import CanaryASR, CanaryLID + self.tokenizer = None + self.asr = CanaryASR( + lan=config.lan, + canary_model=config.canary_model, + canary_default_lang=config.canary_default_lang, + buffer_trimming=config.buffer_trimming, + buffer_trimming_sec=config.buffer_trimming_sec, + confidence_validation=config.confidence_validation, + ) + # Load the LID model so any session may request auto-detection. + self.asr.lid_model = CanaryLID(lid_model=config.canary_lid_model) + logger.info("Using LocalAgreement policy with Canary backend") elif config.backend_policy == "simulstreaming": simulstreaming_params = { "disable_fast_encoder": config.disable_fast_encoder, @@ -299,6 +313,20 @@ def online_factory(args, asr, language=None): If provided and the backend supports it, transcription will use this language instead of the server-wide default. """ + backend = getattr(args, 'backend', None) + if backend == "canary": + from whisperlivekit.canary_backend import CanarySessionASR + effective = language if language is not None else getattr(args, 'lan', 'auto') + wrapped = CanarySessionASR( + asr, + effective, + lid=getattr(asr, 'lid_model', None), + default_lang=getattr(args, 'canary_default_lang', 'en'), + lid_min_sec=getattr(args, 'canary_lid_min_sec', 2.0), + lid_min_conf=getattr(args, 'canary_lid_min_conf', 0.5), + ) + return OnlineASRProcessor(wrapped) + # Wrap the shared ASR with a per-session language if requested if language is not None: from whisperlivekit.session_asr_proxy import SessionASRProxy From e50aef5a51cbfcc41befa6d212be9b74f7d0188a Mon Sep 17 00:00:00 2001 From: wuxuedaifu Date: Sun, 19 Jul 2026 09:33:01 +0400 Subject: [PATCH 11/16] cleanup(canary): drop dead backend reassignment, strengthen routing test --- tests/test_canary_backend.py | 6 ++++++ whisperlivekit/core.py | 3 ++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/tests/test_canary_backend.py b/tests/test_canary_backend.py index a8292497..cfff8b94 100644 --- a/tests/test_canary_backend.py +++ b/tests/test_canary_backend.py @@ -252,3 +252,9 @@ def test_online_factory_routes_canary_to_localagreement(): processor = online_factory(args, asr, language="auto") assert isinstance(processor, OnlineASRProcessor) assert isinstance(processor.asr, CanarySessionASR) + assert processor.asr._lid is asr.lid_model + + # language=None falls back to args.lan ("auto") -> auto-detect mode. + processor_none = online_factory(args, _FakeCanaryASR(), language=None) + assert isinstance(processor_none.asr, CanarySessionASR) + assert processor_none.asr._is_auto is True diff --git a/whisperlivekit/core.py b/whisperlivekit/core.py index de5e6277..462fc0c8 100644 --- a/whisperlivekit/core.py +++ b/whisperlivekit/core.py @@ -314,6 +314,8 @@ def online_factory(args, asr, language=None): this language instead of the server-wide default. """ backend = getattr(args, 'backend', None) + # Canary carries its own per-session wrapper (CanarySessionASR with auto-detect), + # so it returns here before the generic SessionASRProxy wrap to avoid double-wrapping. if backend == "canary": from whisperlivekit.canary_backend import CanarySessionASR effective = language if language is not None else getattr(args, 'lan', 'auto') @@ -332,7 +334,6 @@ def online_factory(args, asr, language=None): from whisperlivekit.session_asr_proxy import SessionASRProxy asr = SessionASRProxy(asr, language) - backend = getattr(args, 'backend', None) if backend == "qwen3-streaming": from whisperlivekit.qwen3_streaming import Qwen3StreamingOnlineProcessor return Qwen3StreamingOnlineProcessor(asr) From f590a4a682218347642377f8fb0f846c48851f61 Mon Sep 17 00:00:00 2001 From: wuxuedaifu Date: Sun, 19 Jul 2026 09:45:07 +0400 Subject: [PATCH 12/16] feat(canary): optional extra, end-to-end test, and docs Adds the `canary` packaging extra (nemo-toolkit[asr]>=2.5.0), with uv conflict markers against voxtral-hf and qwen3-vllm-metal since both pin transformers ranges incompatible with NeMo's. Adds a NeMo-gated TestHarness end-to-end test that feeds a cached LibriSpeech sample through the full FFmpeg -> VAD -> Canary ASR -> LocalAgreement pipeline. Documents the backend in README.md alongside the other ASR backends (install, CLI flags, notes on the NeMo timestamp API). --- README.md | 35 +- pyproject.toml | 11 + tests/test_canary_backend.py | 28 + uv.lock | 30416 ++++++++++++++++++++++----------- 4 files changed, 20756 insertions(+), 9734 deletions(-) diff --git a/README.md b/README.md index 75f681cd..597238ca 100644 --- a/README.md +++ b/README.md @@ -124,6 +124,7 @@ For a native SwiftUI macOS client, see [macos/WhisperLiveKitMac](macos/WhisperLi | **Qwen3-ASR vLLM Metal (Apple Silicon)** | Install vLLM with the official vllm-metal script first, then `uv sync --extra qwen3-vllm-metal` | Install vLLM with the official vllm-metal script first, then `pip install -e ".[qwen3-vllm-metal]"` | | **Speaker diarization (Sortformer / NeMo)** | `uv sync --extra diarization-sortformer` | `pip install -e ".[diarization-sortformer]"` | | *[Not recommended]* Speaker diarization with Diart | `uv sync --extra diarization-diart` | `pip install -e ".[diarization-diart]"` | +| **Canary-1b-v2 (NeMo, CUDA)** | `uv sync --extra canary` | `pip install -e ".[canary]"` | Supported GPU profiles: @@ -138,7 +139,7 @@ uv sync --extra cu129 --extra voxtral-hf --extra translation uv sync --extra qwen3-vllm ``` -`qwen3-vllm` uses vLLM's CUDA wheel stack and must be installed in a separate environment from `cu129`. `voxtral-hf` / `qwen3-vllm-metal` and `diarization-sortformer` are also intentionally incompatible extras and must be installed in separate environments. +`qwen3-vllm` uses vLLM's CUDA wheel stack and must be installed in a separate environment from `cu129`. `voxtral-hf` / `qwen3-vllm-metal` / `canary` and `diarization-sortformer` are also intentionally incompatible extras and must be installed in separate environments. See **Parameters & Configuration** below on how to use them. @@ -263,6 +264,28 @@ text-decoder request per chunk. The `append-kv` and `rolling` names remain as compatibility aliases for the HF decoder path. Keep standard `qwen3-vllm` for best current accuracy until the causal quality gate is fixed. +### Canary Backend + +WhisperLiveKit supports [NVIDIA Canary-1b-v2](https://huggingface.co/nvidia/canary-1b-v2) +via [NeMo](https://github.com/NVIDIA/NeMo), a 1B-parameter model covering 25 European +languages with native word-level timestamps. Automatic language detection uses NeMo's +AmberNet language-ID model when `--language auto` is set; the detected language is locked +in once enough audio has accumulated. Canary streams through the LocalAgreement policy. + +```bash +pip install -e ".[canary]" +wlk --backend canary --language auto +``` + +Notes: +- CUDA only; NeMo is a heavy dependency (torch, pytorch-lightning, and friends). +- Word/segment timestamps require NeMo's timestamp API, available in NeMo 2.5+. + The `canary` extra pins `nemo-toolkit[asr]>=2.5.0`; if you land on a build where + the timestamp API is missing, install NeMo from `main`. +- Explicit `--language ` skips language detection entirely. Tune detection + with `--canary-lid-min-sec` (minimum audio before detecting) and + `--canary-lid-min-conf` (confidence threshold to lock in the detected language). + ### Usage Examples **Command-line Interface**: Start the transcription server with various options: @@ -334,7 +357,7 @@ async def websocket_endpoint(websocket: WebSocket): | `--translation-backend` | `nllb` (in-process, CPU-friendly) or `alignatt`: streaming LLM translation through an [Alignatt4LLM](https://github.com/QuentinFuxa/Alignatt4LLM) sidecar, with attention-gated append-only commits. See [docs/translation-alignatt.md](docs/translation-alignatt.md). | `nllb` | | `--diarization` | Enable speaker identification | `False` | | `--backend-policy` | Streaming strategy: `1`/`simulstreaming` uses AlignAtt SimulStreaming, `2`/`localagreement` uses the LocalAgreement policy | `simulstreaming` | -| `--backend` | ASR backend selector. `auto` picks MLX on macOS (if installed), otherwise Faster-Whisper, otherwise vanilla Whisper. Options: `mlx-whisper`, `faster-whisper`, `whisper`, `openai-api` (LocalAgreement only), `voxtral-mlx` (Apple Silicon), `voxtral` (HuggingFace), `qwen3-vllm`, `qwen3-vllm-metal` (Apple Silicon), `qwen3-streaming` (HuggingFace, CUDA/MPS/CPU) | `auto` | +| `--backend` | ASR backend selector. `auto` picks MLX on macOS (if installed), otherwise Faster-Whisper, otherwise vanilla Whisper. Options: `mlx-whisper`, `faster-whisper`, `whisper`, `openai-api` (LocalAgreement only), `voxtral-mlx` (Apple Silicon), `voxtral` (HuggingFace), `qwen3-vllm`, `qwen3-vllm-metal` (Apple Silicon), `qwen3-streaming` (HuggingFace, CUDA/MPS/CPU), `canary` (NeMo, CUDA) | `auto` | | `--no-vac` | Disable Voice Activity Controller. NOT ADVISED | `False` | | `--no-vad` | Disable Voice Activity Detection. NOT ADVISED | `False` | | `--warmup-file` | Audio file path for model warmup | `jfk.wav` | @@ -360,6 +383,14 @@ async def websocket_endpoint(websocket: WebSocket): | `--segmentation-model` | Hugging Face model ID for Diart segmentation model. [Available models](https://github.com/juanmc2005/diart/tree/main?tab=readme-ov-file#pre-trained-models) | `pyannote/segmentation-3.0` | | `--embedding-model` | Hugging Face model ID for Diart embedding model. [Available models](https://github.com/juanmc2005/diart/tree/main?tab=readme-ov-file#pre-trained-models) | `pyannote/embedding` | +| Canary backend options (only used with `--backend canary`) | Description | Default | +|-----------|-------------|---------| +| `--canary-model` | HuggingFace/NGC model id or local `.nemo` path | `nvidia/canary-1b-v2` | +| `--canary-default-lang` | Language used until auto-detection locks in (or always, with explicit `--language`) | `en` | +| `--canary-lid-model` | NeMo language-ID model used for `--language auto` | `langid_ambernet` | +| `--canary-lid-min-sec` | Minimum seconds of audio before attempting language detection | `2.0` | +| `--canary-lid-min-conf` | Confidence threshold to lock in the detected language | `0.5` | + | SimulStreaming backend options | Description | Default | |-----------|-------------|---------| | `--disable-fast-encoder` | Disable Faster Whisper or MLX Whisper backends for the encoder (if installed). Inference can be slower but helpful when GPU memory is limited | `False` | diff --git a/pyproject.toml b/pyproject.toml index ae72d0ea..21b5edf9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -72,6 +72,9 @@ cu129 = [ diarization-sortformer = [ "nemo-toolkit[asr]>2.4; python_version >= '3.10' and python_version < '3.13'", ] +canary = [ + "nemo-toolkit[asr]>=2.5.0; python_version >= '3.10' and python_version < '3.13'", +] diarization-diart = [ "diart", "torch<2.9.0", @@ -128,6 +131,14 @@ conflicts = [ { extra = "qwen3-streaming" }, { extra = "voxtral-hf" }, ], + [ + { extra = "canary" }, + { extra = "voxtral-hf" }, + ], + [ + { extra = "canary" }, + { extra = "qwen3-vllm-metal" }, + ], ] [tool.uv.sources] diff --git a/tests/test_canary_backend.py b/tests/test_canary_backend.py index cfff8b94..39dd2ba5 100644 --- a/tests/test_canary_backend.py +++ b/tests/test_canary_backend.py @@ -258,3 +258,31 @@ def test_online_factory_routes_canary_to_localagreement(): processor_none = online_factory(args, _FakeCanaryASR(), language=None) assert isinstance(processor_none.asr, CanarySessionASR) assert processor_none.asr._is_auto is True + + +@requires_nemo +def test_canary_end_to_end_via_testharness(): + """Full pipeline smoke test: FFmpeg decode -> VAD -> Canary ASR -> LocalAgreement. + + Uses the real TestHarness (whisperlivekit/test_harness.py), which forwards + **kwargs straight to TranscriptionEngine/WhisperLiveKitConfig, so `backend` + and `lan` are the same fields exercised by test_canary_config_defaults() + above. Audio comes from whisperlivekit/test_data.py's cached LibriSpeech + sample (same fixture used by test_canary_asr_transcribes_with_word_timestamps + and tests/test_pipeline.py). + """ + import asyncio + + from whisperlivekit import TestHarness + from whisperlivekit.test_data import get_sample + + sample = get_sample("librispeech_short") + + async def _run(): + async with TestHarness(backend="canary", lan="en") as h: + await h.feed(sample.path, speed=1.0) + await h.drain(3.0) + result = await h.finish() + assert result.text.strip(), "expected non-empty transcription" + + asyncio.run(_run()) diff --git a/uv.lock b/uv.lock index ea0d4fd4..959bb1ec 100644 --- a/uv.lock +++ b/uv.lock @@ -2,601 +2,1261 @@ 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] conflicts = [[ { package = "whisperlivekit", extra = "cpu" }, @@ -631,6 +1291,12 @@ conflicts = [[ ], [ { package = "whisperlivekit", extra = "qwen3-streaming" }, { package = "whisperlivekit", extra = "voxtral-hf" }, +], [ + { package = "whisperlivekit", extra = "canary" }, + { package = "whisperlivekit", extra = "voxtral-hf" }, +], [ + { package = "whisperlivekit", extra = "canary" }, + { package = "whisperlivekit", extra = "qwen3-vllm-metal" }, ]] [[package]] @@ -647,335 +1313,761 @@ name = "accelerate" version = "1.12.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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", version = "24.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "psutil", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pyyaml", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "safetensors", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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 (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.11.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') 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-qwen3-vllm-metal') 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-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.11.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' 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-qwen3-vllm-metal') 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.11.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "packaging", version = "24.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "psutil", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pyyaml", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "safetensors", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-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' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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 (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.11.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' 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-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' 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-qwen3-vllm-metal') 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.11.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.11.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 = [ @@ -987,159 +2079,315 @@ name = "accelerate" version = "1.13.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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] dependencies = [ - { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "huggingface-hub", version = "1.14.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version != '3.12.*' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version != '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version != '3.12.*' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version != '3.12.*' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", version = "24.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version != '3.12.*' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version != '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version != '3.12.*' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version != '3.12.*' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "psutil", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' 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-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pyyaml", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' 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-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "safetensors", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' 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-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and 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 (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.11.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and 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 (python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and 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 (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and 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 (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (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-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and 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 (platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and 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 (platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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 sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' 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' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and 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 != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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 (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.11.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(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-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' 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-qwen3-vllm-metal') 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-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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' 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-qwen3-vllm-metal') 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.11.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "huggingface-hub", version = "1.14.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version != '3.12.*' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version != '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version != '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version != '3.12.*' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version != '3.12.*' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (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-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "packaging", version = "24.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version != '3.12.*' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version != '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version != '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version != '3.12.*' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version != '3.12.*' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "psutil", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' 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-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' 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-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pyyaml", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' 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-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' 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-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "safetensors", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' 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-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' 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-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' 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 = "(python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' 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-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.11.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' 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-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') 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-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and 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 (python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and 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 (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (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-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and 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 (python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and 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 (platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and 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 (platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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 sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and 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 != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' 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 (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' 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-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.11.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (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-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' 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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-canary' and 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.11.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/ca/14/787e5498cd062640f0f3d92ef4ae4063174f76f9afd29d13fc52a319daae/accelerate-1.13.0.tar.gz", hash = "sha256:d631b4e0f5b3de4aff2d7e9e6857d164810dfc3237d54d017f075122d057b236", size = 402835, upload-time = "2026-03-04T19:34:12.359Z" } wheels = [ @@ -1229,7 +2477,7 @@ 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "typing-extensions", marker = "python_full_version < '3.13' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] 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 = [ @@ -1241,9 +2489,9 @@ name = "alembic" version = "1.18.4" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "mako", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-diarization-diart' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "sqlalchemy", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-diarization-diart' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "typing-extensions", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-diarization-diart' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "mako", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-diarization-diart' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "sqlalchemy", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-diarization-diart' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "typing-extensions", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-diarization-diart' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] 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 = [ @@ -1299,7 +2547,7 @@ version = "4.13.0" 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "typing-extensions", marker = "python_full_version < '3.13' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/19/14/2c5dd9f512b66549ae92767a9c7b330ae88e1932ca57876909410251fe13/anyio-4.13.0.tar.gz", hash = "sha256:334b70e641fd2221c1505b3890c69882fe4a2df910cba14d97019b90b24439dc", size = 231622, upload-time = "2026-03-24T12:59:09.671Z" } wheels = [ @@ -1334,11 +2582,11 @@ name = "asteroid-filterbanks" version = "0.4.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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" } @@ -1418,8 +2666,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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "standard-aifc", marker = "python_full_version >= '3.13' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "standard-sunau", marker = "python_full_version >= '3.13' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 = [ @@ -1612,7 +2860,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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pycparser", marker = "implementation_name != 'PyPy' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 = [ @@ -1717,7 +2965,7 @@ name = "click" version = "8.3.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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "colorama", marker = "sys_platform == 'win32' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/bb/63/f9e1ea081ce35720d8b92acde70daaedace594dc93b693c869e0d5910718/click-8.3.3.tar.gz", hash = "sha256:398329ad4837b2ff7cbe1dd166a4c0f8900c3ca3a218de04466f38f6497f18a2", size = 328061, upload-time = "2026-04-22T15:11:27.506Z" } wheels = [ @@ -1747,7 +2995,7 @@ name = "colorlog" version = "6.10.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "colorama", marker = "(python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "colorama", marker = "(python_full_version < '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] 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 = [ @@ -1761,8 +3009,8 @@ source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "loguru", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, { name = "pydantic", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, - { name = "torch", version = "2.11.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.11.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' 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 sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.11.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' 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-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.11.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' 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 sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "transformers", version = "4.57.6", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, ] sdist = { url = "https://files.pythonhosted.org/packages/41/1b/c3c4a98ec5f2727656336f07a0c35862195c310d8eb0b2fa5b4be6848680/compressed_tensors-0.15.0.1.tar.gz", hash = "sha256:a8e93054e8a5ec49c980b09ed36c4c1249b4a8ee167920a8e461c4da26e78d99", size = 229412, upload-time = "2026-04-10T14:23:54.708Z" } @@ -1775,8 +3023,8 @@ name = "contourpy" version = "1.3.3" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] 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 = [ @@ -1881,9 +3129,9 @@ name = "ctranslate2" version = "4.7.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "pyyaml" }, { name = "setuptools" }, ] @@ -1910,23 +3158,35 @@ name = "cuda-bindings" version = "12.9.6" 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] dependencies = [ - { name = "cuda-pathfinder", 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "cuda-pathfinder", 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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] wheels = [ { url = "https://files.pythonhosted.org/packages/1f/a5/e9d37c10f6c27c9c65d53c6cd6d9763e1df99c004780585fc2ad9041fbe3/cuda_bindings-12.9.6-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:2662f59db67d9aeaf8959c593c91f600792c2970cf02cae2814387fc687b115a", size = 7090971, upload-time = "2026-03-11T14:47:29.526Z" }, @@ -1948,229 +3208,613 @@ name = "cuda-bindings" version = "13.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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] dependencies = [ - { name = "cuda-pathfinder", marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version != '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (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-qwen3-vllm') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' 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 sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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 (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (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-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal')" }, + { name = "cuda-pathfinder", marker = "(python_full_version < '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version != '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129') or (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-qwen3-vllm') or (python_full_version < '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' 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 sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' 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' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' 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-qwen3-vllm-metal') 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-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-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-qwen3-vllm-metal') 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 (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (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-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] wheels = [ { url = "https://files.pythonhosted.org/packages/e0/a9/3a8241c6e19483ac1f1dcf5c10238205dcb8a6e9d0d4d4709240dff28ff4/cuda_bindings-13.2.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:721104c603f059780d287969be3d194a18d0cc3b713ed9049065a1107706759d", size = 5730273, upload-time = "2026-03-11T00:12:37.18Z" }, @@ -2228,20 +3872,32 @@ name = "cuda-toolkit" version = "12.9.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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] wheels = [ { url = "https://files.pythonhosted.org/packages/7c/8f/a28e7da158e96ad61f7e1035e53851fafaddf22445300d664e68ec657fdc/cuda_toolkit-12.9.1-py2.py3-none-any.whl", hash = "sha256:0c8636dfacbecfe9867a949a211864f080a805bc54023ce4a361aa4e1fd8738b", size = 2303, upload-time = "2025-08-13T02:03:10.699Z" }, @@ -2249,37 +3905,37 @@ wheels = [ [package.optional-dependencies] cublas = [ - { name = "nvidia-cublas-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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cublas-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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] cudart = [ - { name = "nvidia-cuda-runtime-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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cuda-runtime-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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] cufft = [ - { name = "nvidia-cufft-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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cufft-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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] cufile = [ - { name = "nvidia-cufile-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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cufile-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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] cupti = [ - { name = "nvidia-cuda-cupti-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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cuda-cupti-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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] curand = [ - { name = "nvidia-curand-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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-curand-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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] cusolver = [ - { name = "nvidia-cusolver-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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cusolver-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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] cusparse = [ - { name = "nvidia-cusparse-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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cusparse-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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] nvjitlink = [ - { name = "nvidia-nvjitlink-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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-nvjitlink-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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] nvrtc = [ - { name = "nvidia-cuda-nvrtc-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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cuda-nvrtc-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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] nvtx = [ - { name = "nvidia-nvtx-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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-nvtx-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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] [[package]] @@ -2287,64 +3943,136 @@ name = "cuda-toolkit" version = "13.0.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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] wheels = [ { url = "https://files.pythonhosted.org/packages/57/b2/453099f5f3b698d7d0eab38916aac44c7f76229f451709e2eb9db6615dcd/cuda_toolkit-13.0.2-py2.py3-none-any.whl", hash = "sha256:b198824cf2f54003f50d64ada3a0f184b42ca0846c1c94192fa269ecd97a66eb", size = 2364, upload-time = "2025-12-19T23:24:07.328Z" }, @@ -2352,37 +4080,37 @@ wheels = [ [package.optional-dependencies] cublas = [ - { name = "nvidia-cublas", 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (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-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cublas", 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' 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-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] cudart = [ - { name = "nvidia-cuda-runtime", 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (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-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cuda-runtime", 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' 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-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] cufft = [ - { name = "nvidia-cufft", 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (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-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cufft", 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' 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-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] cufile = [ - { name = "nvidia-cufile", 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (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-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cufile", 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' 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-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] cupti = [ - { name = "nvidia-cuda-cupti", 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (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-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cuda-cupti", 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' 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-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] curand = [ - { name = "nvidia-curand", 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (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-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-curand", 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' 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-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] cusolver = [ - { name = "nvidia-cusolver", 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (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-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cusolver", 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' 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-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] cusparse = [ - { name = "nvidia-cusparse", 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (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-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cusparse", 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' 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-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] nvjitlink = [ - { name = "nvidia-nvjitlink", 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (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-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-nvjitlink", 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' 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-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] nvrtc = [ - { name = "nvidia-cuda-nvrtc", 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (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-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cuda-nvrtc", 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' 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-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] nvtx = [ - { name = "nvidia-nvtx", 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (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-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-nvtx", 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' 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-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] [[package]] @@ -2531,17 +4259,17 @@ source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "dill" }, { name = "filelock" }, - { name = "fsspec", version = "2024.12.0", source = { registry = "https://pypi.org/simple" }, extra = ["http"], marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "fsspec", version = "2026.2.0", source = { registry = "https://pypi.org/simple" }, extra = ["http"], marker = "python_full_version >= '3.13' or extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, + { name = "fsspec", version = "2024.12.0", source = { registry = "https://pypi.org/simple" }, extra = ["http"], marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "fsspec", version = "2026.2.0", source = { registry = "https://pypi.org/simple" }, extra = ["http"], marker = "python_full_version >= '3.13' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, { name = "httpx" }, - { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "huggingface-hub", version = "1.14.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, + { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "huggingface-hub", version = "1.14.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, { name = "multiprocess" }, - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", version = "24.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.13' or extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "packaging", version = "24.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.13' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, { name = "pandas" }, { name = "pyarrow" }, { name = "pyyaml" }, @@ -2581,156 +4309,340 @@ name = "diart" version = "0.9.1" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] dependencies = [ - { name = "einops", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "matplotlib", version = "3.5.3", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "optuna", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pandas", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pyannote-audio", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pyannote-core", version = "5.0.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pyannote-database", version = "5.1.3", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pyannote-metrics", version = "3.2.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "requests", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "rich", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "rx", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "scipy", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "sounddevice", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.8.0", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and 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 (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchvision", version = "0.23.0", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchvision", version = "0.23.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchvision", version = "0.23.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and 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 (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "tqdm", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "websocket-client", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "websocket-server", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "einops", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "matplotlib", version = "3.5.3", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "optuna", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pandas", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pyannote-audio", version = "3.3.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' 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-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pyannote-audio", version = "3.4.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pyannote-core", version = "5.0.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pyannote-core", version = "6.0.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' 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-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pyannote-database", version = "5.1.3", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pyannote-database", version = "6.1.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' 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-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pyannote-metrics", version = "3.2.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pyannote-metrics", version = "4.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' 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-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "requests", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "rich", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "rx", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "scipy", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "sounddevice", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' 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 = "(python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.8.0", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' 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 = "(python_full_version < '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' 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-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' 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-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and 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 (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchvision", version = "0.23.0", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchvision", version = "0.23.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' 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 = "(python_full_version < '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' 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-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' 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-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and 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 (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "tqdm", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "websocket-client", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "websocket-server", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/2e/04/28838c037571592dba593dd8036ab90998f353b15536201a29dbe624dbcb/diart-0.9.1.tar.gz", hash = "sha256:e8aa0633699dba03c3520b0ca5be337f6b9a09a8a83adcd8235fc47317942678", size = 53994, upload-time = "2024-05-25T18:51:30.097Z" } wheels = [ @@ -2742,141 +4654,177 @@ name = "diart" version = "0.9.2" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] dependencies = [ - { name = "einops", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' 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 platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "matplotlib", version = "3.10.9", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' 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 platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' 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 platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "optuna", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' 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 platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pandas", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' 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 platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pyannote-audio", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' 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 platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pyannote-core", version = "5.0.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' 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 platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pyannote-database", version = "5.1.3", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' 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 platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pyannote-metrics", version = "3.2.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' 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 platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "requests", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' 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 platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "rich", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' 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 platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "rx", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' 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 platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "scipy", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' 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 platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "sounddevice", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' 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 platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.8.0", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and 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 (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchvision", version = "0.23.0", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchvision", version = "0.23.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchvision", version = "0.23.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and 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 (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "tqdm", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' 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 platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "websocket-client", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' 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 platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "websocket-server", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' 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 platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "einops", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' 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 platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "matplotlib", version = "3.10.9", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' 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 platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' 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 platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "optuna", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' 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 platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pandas", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' 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 platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pyannote-audio", version = "3.4.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' 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 platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pyannote-core", version = "5.0.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' 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 platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pyannote-database", version = "5.1.3", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' 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 platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pyannote-metrics", version = "3.2.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' 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 platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "requests", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' 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 platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "rich", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' 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 platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "rx", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' 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 platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "scipy", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' 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 platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "sounddevice", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' 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 platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' 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 = "(python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.8.0", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' 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 = "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and 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 (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchvision", version = "0.23.0", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchvision", version = "0.23.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' 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 = "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and 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 (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "tqdm", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' 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 platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "websocket-client", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' 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 platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "websocket-server", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' 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 platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/35/f5/a9fbc4c541117f58487574520e7e65e918e27f754f8a1a7f10a8d0e71266/diart-0.9.2.tar.gz", hash = "sha256:6fd1d58f89300064f20800fbe334f05214ecfeba7a54f5e21cc225bb2f24ed28", size = 54102, upload-time = "2025-02-12T13:21:32.535Z" } wheels = [ @@ -2939,9 +4887,9 @@ name = "dynet38" version = "2.2" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "cython", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "cython", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] wheels = [ { url = "https://files.pythonhosted.org/packages/21/93/0c08e87f2616b40cce781f8654de5ed872fbe8c6a623dbfb794864756977/dyNET38-2.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3f5ed1499c8e379fb6281d7d00169cb57c088846e71e66e4462ab355521b6148", size = 3383951, upload-time = "2024-01-23T10:31:45.752Z" }, @@ -3054,14 +5002,14 @@ wheels = [ [package.optional-dependencies] standard = [ { name = "email-validator", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, - { name = "fastapi-cli", extra = ["standard"], marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "fastapi-cli", extra = ["standard"], marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "fastar", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, { name = "httpx", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, { name = "jinja2", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, { name = "pydantic-extra-types", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, { name = "pydantic-settings", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, { name = "python-multipart", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, - { name = "uvicorn", extra = ["standard"], marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "uvicorn", extra = ["standard"], marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] [[package]] @@ -3071,7 +5019,7 @@ source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "rich-toolkit", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, { name = "typer", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, - { name = "uvicorn", extra = ["standard"], marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "uvicorn", extra = ["standard"], marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/6e/58/74797ae9e4610cfa0c6b34c8309096d3b20bb29be3b8b5fbf1004d10fa5f/fastapi_cli-0.0.24.tar.gz", hash = "sha256:1afc9c9e21d7ebc8a3ca5e31790cd8d837742be7e4f8b9236e99cb3451f0de00", size = 19043, upload-time = "2026-02-24T10:45:10.476Z" } wheels = [ @@ -3081,7 +5029,7 @@ wheels = [ [package.optional-dependencies] standard = [ { name = "fastapi-cloud-cli", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, - { name = "uvicorn", extra = ["standard"], marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "uvicorn", extra = ["standard"], marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] [[package]] @@ -3091,12 +5039,12 @@ source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "fastar", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, { name = "httpx", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, - { name = "pydantic", extra = ["email"], marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pydantic", extra = ["email"], marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "rich-toolkit", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, { name = "rignore", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, { name = "sentry-sdk", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, { name = "typer", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, - { name = "uvicorn", extra = ["standard"], marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "uvicorn", extra = ["standard"], marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/96/57/cee8e91b83f39e75ae5562a2237261442a8179dcb3b631c7398113157398/fastapi_cloud_cli-0.17.1.tar.gz", hash = "sha256:0baece208fa88063bec46dccb5fb512f3199162092165e57654b44e64adbc44d", size = 47409, upload-time = "2026-04-27T13:38:07.094Z" } wheels = [ @@ -3179,8 +5127,8 @@ 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 = "(python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "huggingface-hub", version = "1.14.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, + { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "huggingface-hub", version = "1.14.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, { name = "onnxruntime" }, { name = "tokenizers" }, { name = "tqdm" }, @@ -3245,17 +5193,17 @@ dependencies = [ { name = "cuda-tile", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, { name = "einops", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, { name = "ninja", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "nvidia-cudnn-frontend", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, { name = "nvidia-cutlass-dsl", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, { name = "nvidia-ml-py", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, - { name = "packaging", version = "24.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "packaging", version = "24.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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 == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' 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-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "requests", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, { name = "tabulate", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, - { name = "torch", version = "2.11.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.11.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' 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 sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.11.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' 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-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.11.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' 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 sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "tqdm", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, ] sdist = { url = "https://files.pythonhosted.org/packages/53/1e/2760fef9e74abc4480961048e5790b4c9e955872fb4d7d97900cfddced5a/flashinfer_python-0.6.8.post1.tar.gz", hash = "sha256:b18e4121baf9b93fa9a9f368ba9b981a0342895f50ab9dddc224aeb964ed346f", size = 6675885, upload-time = "2026-04-18T18:28:13.299Z" } @@ -3268,12 +5216,12 @@ name = "flask" version = "3.1.3" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "blinker", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "click", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "itsdangerous", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "jinja2", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "markupsafe", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "werkzeug", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "blinker", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "click", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "itsdangerous", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "jinja2", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "markupsafe", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "werkzeug", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/26/00/35d85dcce6c57fdc871f3867d465d780f302a175ea360f62533f12b27e2b/flask-3.1.3.tar.gz", hash = "sha256:0ef0e52b8a9cd932855379197dd8f94047b359ca0a78695144304cb45f87c9eb", size = 759004, upload-time = "2026-02-19T05:00:57.678Z" } wheels = [ @@ -3399,226 +5347,666 @@ name = "fsspec" version = "2024.12.0" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] sdist = { url = "https://files.pythonhosted.org/packages/ee/11/de70dee31455c546fbc88301971ec03c328f3d1138cfba14263f651e9551/fsspec-2024.12.0.tar.gz", hash = "sha256:670700c977ed2fb51e0d9f9253177ed20cbde4a3e5c0283cc5385b5870c8533f", size = 291600, upload-time = "2024-12-19T19:57:30.333Z" } wheels = [ @@ -3627,7 +6015,7 @@ wheels = [ [package.optional-dependencies] http = [ - { name = "aiohttp", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "aiohttp", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] [[package]] @@ -3635,381 +6023,601 @@ name = "fsspec" version = "2026.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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] sdist = { url = "https://files.pythonhosted.org/packages/51/7c/f60c259dcbf4f0c47cc4ddb8f7720d2dcdc8888c8e5ad84c73ea4531cc5b/fsspec-2026.2.0.tar.gz", hash = "sha256:6544e34b16869f5aacd5b90bdf1a71acb37792ea3ddf6125ee69a22a53fb8bff", size = 313441, upload-time = "2026-02-05T21:50:53.743Z" } wheels = [ @@ -4018,7 +6626,7 @@ wheels = [ [package.optional-dependencies] http = [ - { name = "aiohttp", marker = "python_full_version >= '3.13' or extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, + { name = "aiohttp", marker = "python_full_version >= '3.13' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, ] [[package]] @@ -4026,8 +6634,8 @@ name = "gguf" version = "0.19.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "pyyaml", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, { name = "requests", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, { name = "tqdm", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, @@ -4066,8 +6674,8 @@ name = "googleapis-common-protos" version = "1.75.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "protobuf", version = "5.29.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "protobuf", version = "6.33.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "protobuf", version = "5.29.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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 == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' 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-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "protobuf", version = "6.33.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/b5/c8/f439cffde755cffa462bfbb156278fa6f9d09119719af9814b858fd4f81f/googleapis_common_protos-1.75.0.tar.gz", hash = "sha256:53a062ff3c32552fbd62c11fe23768b78e4ddf0494d5e5fd97d3f4689c75fbbd", size = 151035, upload-time = "2026-05-07T08:04:49.423Z" } wheels = [ @@ -4079,36 +6687,36 @@ name = "gradio" version = "6.15.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "anyio", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "audioop-lts", marker = "(python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "brotli", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "fastapi", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "gradio-client", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "groovy", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "hf-gradio", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "httpx", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "jinja2", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "markupsafe", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "orjson", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", version = "24.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pandas", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pillow", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pydantic", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pydub", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "python-multipart", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pytz", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pyyaml", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "safehttpx", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "semantic-version", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "starlette", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "tomlkit", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "typer", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "typing-extensions", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "uvicorn", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "anyio", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "audioop-lts", marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "brotli", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "fastapi", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "gradio-client", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "groovy", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "hf-gradio", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "httpx", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-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-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "jinja2", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "markupsafe", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "orjson", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "packaging", version = "24.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pandas", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pillow", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pydantic", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pydub", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "python-multipart", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pytz", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pyyaml", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "safehttpx", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "semantic-version", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "starlette", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "tomlkit", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "typer", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "typing-extensions", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "uvicorn", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/b9/7a/edc719d67beea0963721a7f552604faa0feaf218d4a51c6e0dacfb51ba6a/gradio-6.15.1.tar.gz", hash = "sha256:58be31be7b3aab53bbe61f21c20666b4a8a25a6737c399e02b7463d669625851", size = 36429761, upload-time = "2026-05-27T13:20:35.232Z" } wheels = [ @@ -4120,13 +6728,13 @@ name = "gradio-client" version = "2.5.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "fsspec", version = "2024.12.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "fsspec", version = "2026.2.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "httpx", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", version = "24.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "typing-extensions", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "fsspec", version = "2024.12.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "fsspec", version = "2026.2.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "httpx", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-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-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "packaging", version = "24.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "typing-extensions", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/e8/e6/6b6029f5fe2ad7f1211105d530e34d991014c2cae463f9223033031cfc4f/gradio_client-2.5.0.tar.gz", hash = "sha256:4cde99bad62149595c30c90876ca2e405e3a13687ecf895474f3412cb476673d", size = 59013, upload-time = "2026-04-20T23:16:21.518Z" } wheels = [ @@ -4194,7 +6802,7 @@ name = "grpcio" version = "1.80.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "typing-extensions", marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "typing-extensions", marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/b7/48/af6173dbca4454f4637a4678b67f52ca7e0c1ed7d5894d89d434fecede05/grpcio-1.80.0.tar.gz", hash = "sha256:29aca15edd0688c22ba01d7cc01cb000d72b2033f4a3c72a81a19b56fd143257", size = 12978905, upload-time = "2026-03-30T08:49:10.502Z" } wheels = [ @@ -4244,8 +6852,8 @@ name = "hf-gradio" version = "0.4.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "gradio-client", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "typer", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "gradio-client", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "typer", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/ce/86/c9694b7cfada5780e75769e60dc161a161f4dd7fc91b61db5e3a3338bef9/hf_gradio-0.4.1.tar.gz", hash = "sha256:a017d942618f0d495a58ee4563047fa04bef614c00e0cb789a9a6d0633cffa7b", size = 6560, upload-time = "2026-04-22T14:01:32.334Z" } wheels = [ @@ -4347,410 +6955,992 @@ 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] dependencies = [ - { name = "filelock", marker = "(python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "fsspec", version = "2024.12.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "fsspec", version = "2026.2.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "hf-xet", marker = "(python_full_version < '3.13' and platform_machine == 'aarch64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine == 'aarch64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine == 'amd64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine == 'amd64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine == 'x86_64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine == 'x86_64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", version = "24.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pyyaml", marker = "(python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "requests", marker = "(python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "tqdm", marker = "(python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "typing-extensions", marker = "(python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "filelock", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "fsspec", version = "2024.12.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "fsspec", version = "2026.2.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "hf-xet", marker = "(python_full_version < '3.13' and platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and platform_machine == 'aarch64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine == 'amd64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine == 'x86_64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine == 'aarch64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine == 'amd64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine == 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "packaging", version = "24.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pyyaml", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "requests", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "tqdm", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "typing-extensions", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] 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 = [ @@ -4762,220 +7952,298 @@ name = "huggingface-hub" version = "1.14.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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] dependencies = [ - { name = "filelock", marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "fsspec", version = "2026.2.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "hf-xet", marker = "(python_full_version >= '3.13' and platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and platform_machine == 'AMD64' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and platform_machine == 'amd64' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and platform_machine == 'x86_64' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine == 'AMD64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine == 'AMD64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'AMD64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'AMD64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'AMD64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'AMD64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'AMD64' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'AMD64' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine == 'aarch64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine == 'aarch64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine == 'amd64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine == 'amd64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'amd64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'amd64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'amd64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'amd64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'amd64' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'amd64' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine == 'x86_64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine == 'x86_64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'x86_64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'x86_64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'x86_64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'x86_64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'x86_64' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'x86_64' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'AMD64' and platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'AMD64' and platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'AMD64' and platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'AMD64' and platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'AMD64' and platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'AMD64' and platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'AMD64' and platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'AMD64' and platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'AMD64' and platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'AMD64' and platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'AMD64' and platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'AMD64' and platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'AMD64' and platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'AMD64' and platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'AMD64' and platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'AMD64' and platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'AMD64' and platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'AMD64' and platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine == 'AMD64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'AMD64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'AMD64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'AMD64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'AMD64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine == 'aarch64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'aarch64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'aarch64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'aarch64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'aarch64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine == 'amd64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'amd64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'amd64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'amd64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'amd64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine == 'x86_64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "httpx", marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "pyyaml", marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "tqdm", marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "typer", marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "typing-extensions", marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, + { name = "filelock", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, + { name = "fsspec", version = "2026.2.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, + { name = "hf-xet", marker = "(python_full_version < '3.13' and platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and platform_machine == 'AMD64' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and platform_machine == 'amd64' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and platform_machine == 'x86_64' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'AMD64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'AMD64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'AMD64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'AMD64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'AMD64' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'AMD64' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'amd64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'amd64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'amd64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'amd64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'amd64' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'amd64' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'x86_64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'x86_64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'x86_64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'x86_64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'x86_64' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'x86_64' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'AMD64' and platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'AMD64' and platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'AMD64' and platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'AMD64' and platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'AMD64' and platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'AMD64' and platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'AMD64' and platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'AMD64' and platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'AMD64' and platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'AMD64' and platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'AMD64' and platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'AMD64' and platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'AMD64' and platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'AMD64' and platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'AMD64' and platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'AMD64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine == 'AMD64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine == 'AMD64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'AMD64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'AMD64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'AMD64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'AMD64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'aarch64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine == 'aarch64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine == 'aarch64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'aarch64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'aarch64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'aarch64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'aarch64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'amd64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine == 'amd64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine == 'amd64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'amd64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'amd64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'amd64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'amd64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine == 'x86_64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine == 'x86_64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'AMD64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'AMD64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'aarch64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'aarch64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'amd64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'amd64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, + { name = "httpx", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, + { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, + { name = "pyyaml", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, + { name = "tqdm", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, + { name = "typer", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, + { name = "typing-extensions", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/39/40/43109e943fd718b0ccd0cd61eb4f1c347df22bf81f5874c6f22adf44bcff/huggingface_hub-1.14.0.tar.gz", hash = "sha256:d6d2c9cd6be1d02ae9ec6672d5587d10a427f377db688e82528f426a041622c2", size = 782365, upload-time = "2026-05-06T14:14:34.278Z" } wheels = [ @@ -5002,17 +8270,17 @@ version = "1.2.2" source = { registry = "https://pypi.org/simple" } resolution-markers = [ "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32'", "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten'", "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten'", "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'", "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 != 's390x' and sys_platform == 'win32'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32'", "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten'", "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten'", "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'", "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 != 's390x' and sys_platform == 'darwin'", @@ -5021,8 +8289,8 @@ resolution-markers = [ "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin'", ] dependencies = [ - { name = "pyyaml", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "ruamel-yaml", version = "0.19.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pyyaml", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "ruamel-yaml", version = "0.19.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/52/e3/3ac46d9a662b037f699a6948b39c8d03bfcff0b592335d5953ba0c55d453/HyperPyYAML-1.2.2.tar.gz", hash = "sha256:bdb734210d18770a262f500fe5755c7a44a5d3b91521b06e24f7a00a36ee0f87", size = 17085, upload-time = "2023-09-21T14:45:27.779Z" } wheels = [ @@ -5034,168 +8302,240 @@ name = "hyperpyyaml" version = "1.2.3" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] dependencies = [ - { name = "pyyaml", marker = "python_full_version >= '3.13' or extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "ruamel-yaml", version = "0.18.17", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.13' or extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pyyaml", marker = "python_full_version >= '3.13' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer')" }, + { name = "ruamel-yaml", version = "0.18.17", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.13' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/ce/cf/000268ec653f354d464e6101505672365e8cecdcb216034a4bb0dbf9dca0/hyperpyyaml-1.2.3.tar.gz", hash = "sha256:4b135800ae13b846ae90aeb1c25e65e4d7a0138bd4935d3222734828d9f218f6", size = 17355, upload-time = "2026-01-01T20:01:49.427Z" } wheels = [ @@ -5527,8 +8867,8 @@ name = "julius" version = "0.2.7" source = { registry = "https://pypi.org/simple" } 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 (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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 (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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" } @@ -5650,8 +8990,8 @@ name = "lazy-loader" version = "0.5" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "packaging", version = "24.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.13' or extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, + { name = "packaging", version = "24.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.13' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/49/ac/21a1f8aa3777f5658576777ea76bfb124b702c520bbe90edf4ae9915eafa/lazy_loader-0.5.tar.gz", hash = "sha256:717f9179a0dbed357012ddad50a5ad3d5e4d9a0b8712680d4e687f5e6e6ed9b3", size = 15294, upload-time = "2026-03-06T15:45:09.054Z" } wheels = [ @@ -5672,11 +9012,11 @@ dependencies = [ { 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, { name = "soundfile", marker = "python_full_version < '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, { name = "tabulate", marker = "python_full_version < '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.11.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (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') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') 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') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.11.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(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') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' 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-qwen3-vllm-metal') 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' 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-qwen3-vllm-metal') 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.11.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' 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-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.11.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (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') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') 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') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.11.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (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') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' 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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.11.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "tqdm", marker = "python_full_version < '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/9d/5a/b606c87b0a50322200aafb0f0682e719890bf0f045152b53e161090a6e8f/lhotse-1.33.0.tar.gz", hash = "sha256:3e91fca8531fc4c1798d0a6de1b3c7ea6bf2e181df70e5985927a131761c67f5", size = 686482, upload-time = "2026-04-20T13:11:08.579Z" } @@ -5738,16 +9078,16 @@ dependencies = [ { name = "lazy-loader" }, { name = "msgpack" }, { name = "numba" }, - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "pooch" }, { name = "scikit-learn" }, { 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "standard-aifc", marker = "python_full_version >= '3.13' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "standard-sunau", marker = "python_full_version >= '3.13' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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" } @@ -5760,241 +9100,681 @@ name = "lightning" version = "2.4.0" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] dependencies = [ - { name = "fsspec", version = "2024.12.0", source = { registry = "https://pypi.org/simple" }, extra = ["http"], marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "lightning-utilities", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", version = "24.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pytorch-lightning", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pyyaml", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.11.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (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') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') 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') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.11.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(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') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' 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-qwen3-vllm-metal') 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' 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-qwen3-vllm-metal') 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.11.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchmetrics", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "tqdm", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "typing-extensions", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "fsspec", version = "2024.12.0", source = { registry = "https://pypi.org/simple" }, extra = ["http"], marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "lightning-utilities", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "packaging", version = "24.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pytorch-lightning", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pyyaml", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' 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-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.11.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (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') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') 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') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.11.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (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') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' 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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.11.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchmetrics", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "tqdm", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "typing-extensions", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] 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 = [ @@ -6006,176 +9786,248 @@ name = "lightning" version = "2.6.1" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] dependencies = [ - { name = "fsspec", version = "2026.2.0", source = { registry = "https://pypi.org/simple" }, extra = ["http"], marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm')" }, - { name = "lightning-utilities", marker = "python_full_version >= '3.13' or extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.13' or extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pytorch-lightning", marker = "python_full_version >= '3.13' or extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pyyaml", marker = "python_full_version >= '3.13' or extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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 = "(python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchmetrics", marker = "python_full_version >= '3.13' or extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "tqdm", marker = "python_full_version >= '3.13' or extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "fsspec", version = "2026.2.0", source = { registry = "https://pypi.org/simple" }, extra = ["http"], marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "lightning-utilities", marker = "python_full_version >= '3.13' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer')" }, + { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.13' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer')" }, + { name = "pytorch-lightning", marker = "python_full_version >= '3.13' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer')" }, + { name = "pyyaml", marker = "python_full_version >= '3.13' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer')" }, + { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchmetrics", marker = "python_full_version >= '3.13' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer')" }, + { name = "tqdm", marker = "python_full_version >= '3.13' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer')" }, + { name = "typing-extensions", marker = "python_full_version >= '3.13' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/15/ad/a1c91a795521be252209d45fb080f28a4f1e7244d3b37121fcc6e3e43034/lightning-2.6.1.tar.gz", hash = "sha256:859104b98c61add6fe60d0c623abf749baf25f2950a66ebdfb4bd18aa7decba9", size = 663175, upload-time = "2026-01-30T14:59:13.92Z" } wheels = [ @@ -6187,9 +10039,9 @@ name = "lightning-utilities" version = "0.15.3" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "packaging", version = "24.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm')" }, - { name = "typing-extensions", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-diarization-diart' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "packaging", version = "24.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "typing-extensions", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-diarization-diart' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] 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 = [ @@ -6237,8 +10089,8 @@ version = "0.11.3" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "interegular", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, - { name = "packaging", version = "24.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "packaging", version = "24.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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 == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' 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-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "pydantic", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, { name = "pyyaml", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, ] @@ -6327,7 +10179,7 @@ name = "mako" version = "1.3.12" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "markupsafe", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-diarization-diart' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "markupsafe", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-diarization-diart' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/00/62/791b31e69ae182791ec67f04850f2f062716bbd205483d63a215f3e062d3/mako-1.3.12.tar.gz", hash = "sha256:9f778e93289bd410bb35daadeb4fc66d95a746f0b75777b942088b7fd7af550a", size = 400219, upload-time = "2026-04-28T19:01:08.512Z" } wheels = [ @@ -6421,140 +10273,320 @@ name = "matplotlib" version = "3.5.3" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] dependencies = [ - { name = "cycler", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "fonttools", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "kiwisolver", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", version = "24.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pillow", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pyparsing", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "python-dateutil", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "cycler", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "fonttools", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "kiwisolver", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "packaging", version = "24.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pillow", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pyparsing", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "python-dateutil", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/02/81/e8276ec6ca005b3b2bfaaad0ea47dbb3a0e389ec8ab87d08e3ccbe4b2742/matplotlib-3.5.3.tar.gz", hash = "sha256:339cac48b80ddbc8bfd05daae0a3a73414651a8596904c2a881cfd1edb65f26c", size = 35236343, upload-time = "2022-08-11T05:26:20.581Z" } @@ -6563,275 +10595,607 @@ name = "matplotlib" version = "3.10.9" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] dependencies = [ - { name = "contourpy", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' 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 platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' 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 platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' 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-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' 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-qwen3-vllm-metal') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "cycler", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' 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 platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' 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 platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' 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-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' 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-qwen3-vllm-metal') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "fonttools", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' 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 platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' 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 platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' 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-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' 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-qwen3-vllm-metal') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "kiwisolver", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' 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 platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' 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 platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' 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-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' 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-qwen3-vllm-metal') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", version = "24.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "pillow", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' 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 platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' 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 platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' 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-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' 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-qwen3-vllm-metal') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "pyparsing", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' 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 platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' 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 platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' 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-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' 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-qwen3-vllm-metal') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "python-dateutil", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' 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 platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' 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 platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' 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-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' 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-qwen3-vllm-metal') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, + { name = "contourpy", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, + { name = "cycler", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, + { name = "fonttools", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, + { name = "kiwisolver", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "packaging", version = "24.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pillow", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, + { name = "pyparsing", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, + { name = "python-dateutil", marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/63/1b/4be5be87d43d327a0cf4de1a56e86f7f84c89312452406cf122efe2839e6/matplotlib-3.10.9.tar.gz", hash = "sha256:fd66508e8c6877d98e586654b608a0456db8d7e8a546eb1e2600efd957302358", size = 34811233, upload-time = "2026-04-24T00:14:13.539Z" } wheels = [ @@ -6891,7 +11255,7 @@ dependencies = [ { name = "jsonschema", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, { name = "pydantic", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, { name = "pydantic-settings", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, - { name = "pyjwt", extra = ["crypto"], marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pyjwt", extra = ["crypto"], marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "python-multipart", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, { name = "sse-starlette", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, { name = "starlette", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, @@ -6919,8 +11283,8 @@ version = "1.1.6" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "ipython", marker = "python_full_version < '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "matplotlib", version = "3.5.3", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "matplotlib", version = "3.10.9", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "matplotlib", version = "3.5.3", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "matplotlib", version = "3.10.9", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, { name = "pillow", marker = "python_full_version < '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, ] @@ -6964,9 +11328,9 @@ version = "1.11.2" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "jsonschema" }, - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "pillow" }, { name = "pydantic" }, { name = "pydantic-extra-types", extra = ["pycountry"] }, @@ -6993,8 +11357,8 @@ name = "ml-dtypes" version = "0.5.4" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/0e/4a/c27b42ed9b1c7d13d9ba8b6905dece787d6259152f2309338aed29b2447b/ml_dtypes-0.5.4.tar.gz", hash = "sha256:8ab06a50fb9bf9666dd0fe5dfb4676fa2b0ac0f31ecff72a6c3af8e22c063453", size = 692314, upload-time = "2025-11-17T22:32:31.031Z" } wheels = [ @@ -7025,7 +11389,7 @@ name = "mlx" version = "0.31.2" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "mlx-metal", marker = "(python_full_version == '3.12.*' and platform_machine != 'arm64' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and platform_machine != 'arm64' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 'arm64' and platform_machine != 's390x' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine != 'arm64' and platform_machine != 's390x' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version != '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version != '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 'arm64' and sys_platform == 'darwin') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-diarization-sortformer') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal')" }, + { name = "mlx-metal", marker = "(python_full_version == '3.12.*' and platform_machine != 'arm64' and platform_machine != 's390x' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and platform_machine != 'arm64' and platform_machine != 's390x' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 'arm64' and platform_machine != 's390x' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine != 'arm64' and platform_machine != 's390x' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version != '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version != '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 'arm64' and sys_platform == 'darwin') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal')" }, ] wheels = [ { url = "https://files.pythonhosted.org/packages/94/89/1e77ec3ff380e8fb9e7258047374d31452a0f9828a0e370f127b07dd8288/mlx-0.31.2-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:4a3f181b367d404e44a6bd68ef5eb573930809ac60cacd51d0c851c629b1b651", size = 586911, upload-time = "2026-04-22T03:14:29.675Z" }, @@ -7101,19 +11465,19 @@ name = "mlx-whisper" version = "0.4.3" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 's390x' 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 (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 's390x' and 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 (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (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-qwen3-vllm-metal') or (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-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' 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-qwen3-vllm-metal') or (platform_machine != 's390x' 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-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and 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 (platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine == 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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 (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "huggingface-hub", version = "1.14.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine != 'arm64' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and platform_machine != 'arm64' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine != 'arm64' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine != 'arm64' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 'arm64' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine != 'arm64' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine != 'arm64' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine != 'arm64' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine != 'arm64' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine != 'arm64' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 'arm64' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine != 'arm64' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine != 'arm64' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 'arm64' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine != 'arm64' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine != 'arm64' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 'arm64' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine != 'arm64' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 'arm64' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine != 'arm64' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine != 'arm64' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine != 'arm64' 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 platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version != '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version != '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine != 'arm64' 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-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' 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-qwen3-vllm-metal') or (platform_machine != 's390x' 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-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and 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 (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' 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-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm-metal') 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 (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "mlx", marker = "(python_full_version != '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version != '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'arm64' and sys_platform == 'darwin') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 's390x' 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-qwen3-vllm') or (platform_machine != 's390x' 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-qwen3-vllm-metal') or (platform_machine != 's390x' 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-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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 (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "more-itertools", marker = "(python_full_version != '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version != '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'arm64' and sys_platform == 'darwin') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 's390x' 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-qwen3-vllm') or (platform_machine != 's390x' 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-qwen3-vllm-metal') or (platform_machine != 's390x' 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-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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 (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numba", marker = "(python_full_version != '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version != '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'arm64' and sys_platform == 'darwin') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 's390x' 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-qwen3-vllm') or (platform_machine != 's390x' 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-qwen3-vllm-metal') or (platform_machine != 's390x' 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-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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 (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version != '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version != '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version != '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version != '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version != '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version != '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version != '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version != '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine != 's390x' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine != 's390x' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine != 's390x' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine != 's390x' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version != '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version != '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version != '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version != '3.12.*' and platform_machine == 's390x' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version != '3.12.*' and platform_machine == 's390x' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version != '3.12.*' and platform_machine == 's390x' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine != 's390x' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and 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 (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine == 's390x' 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 platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine == 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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 sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (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-qwen3-vllm') or (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-qwen3-streaming') or (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-qwen3-vllm') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (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') or (python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and 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 (python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (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-qwen3-vllm-metal') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 's390x' 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-qwen3-vllm') or (platform_machine != 's390x' 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-qwen3-vllm-metal') or (platform_machine != 's390x' 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-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and 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 (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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 (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (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-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (python_full_version < '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') 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-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-vllm' 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' 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-qwen3-vllm') or (platform_machine != 's390x' 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-qwen3-vllm-metal') or (platform_machine != 's390x' 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-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' 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-diarization-diart') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'linux' and 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 (platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (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-qwen3-vllm') or (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-qwen3-vllm-metal') or (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-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-qwen3-vllm-metal') 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 (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "scipy", marker = "(python_full_version != '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version != '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'arm64' and sys_platform == 'darwin') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 's390x' 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-qwen3-vllm') or (platform_machine != 's390x' 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-qwen3-vllm-metal') or (platform_machine != 's390x' 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-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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 (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "tiktoken", marker = "(python_full_version != '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version != '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'arm64' and sys_platform == 'darwin') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 's390x' 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-qwen3-vllm') or (platform_machine != 's390x' 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-qwen3-vllm-metal') or (platform_machine != 's390x' 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-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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 (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version == '3.12.*' and platform_machine != 'arm64' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine != 'arm64' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version != '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version != '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine != 'arm64' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and platform_machine != 's390x' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and platform_machine != 's390x' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and platform_machine != 's390x' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and platform_machine != 's390x' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and platform_machine != 's390x' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and platform_machine != 's390x' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and platform_machine != 's390x' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal')" }, - { name = "torch", version = "2.11.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version != '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version != '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version != '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version != '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version != '3.12.*' and platform_machine != 's390x' and 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 (python_full_version != '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version != '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version != '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (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-qwen3-vllm') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version != '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (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-qwen3-vllm-metal') or (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-voxtral-hf') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (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-qwen3-streaming') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (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-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 's390x' 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-qwen3-vllm') or (platform_machine != 's390x' 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-qwen3-vllm-metal') or (platform_machine != 's390x' 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-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'arm64' and 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 (platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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 (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "tqdm", marker = "(python_full_version != '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version != '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'arm64' and sys_platform == 'darwin') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 's390x' 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-qwen3-vllm') or (platform_machine != 's390x' 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-qwen3-vllm-metal') or (platform_machine != 's390x' 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-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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 (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 's390x' 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 (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (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-qwen3-vllm') or (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-qwen3-vllm-metal') or (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-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' 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-qwen3-vllm-metal') or (platform_machine != 's390x' 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-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' 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-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 's390x' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine == 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 's390x' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' 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-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' 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-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-qwen3-vllm-metal') 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 (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm')" }, + { name = "huggingface-hub", version = "1.14.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine != 'arm64' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and platform_machine != 'arm64' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine != 'arm64' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine != 'arm64' and platform_machine != 's390x' 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 platform_machine != 'arm64' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine != 'arm64' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine != 'arm64' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine != 'arm64' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine != 'arm64' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine != 'arm64' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 'arm64' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine != 'arm64' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 'arm64' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine != 'arm64' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine != 'arm64' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine != 'arm64' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine != 'arm64' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine != 'arm64' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 'arm64' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine != 'arm64' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine != 'arm64' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine != 'arm64' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 'arm64' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine != 'arm64' 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 platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version != '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version != '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' 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-qwen3-vllm-metal') or (platform_machine != 's390x' 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-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and 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 (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine == 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm-metal') 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 (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "mlx", marker = "(python_full_version != '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version != '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'arm64' and sys_platform == 'darwin') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' 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-qwen3-vllm') or (platform_machine != 's390x' 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-qwen3-vllm-metal') or (platform_machine != 's390x' 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-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' 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-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' 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-qwen3-vllm-metal') 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 (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' 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-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm')" }, + { name = "more-itertools", marker = "(python_full_version != '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version != '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'arm64' and sys_platform == 'darwin') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' 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-qwen3-vllm') or (platform_machine != 's390x' 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-qwen3-vllm-metal') or (platform_machine != 's390x' 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-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' 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-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' 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-qwen3-vllm-metal') 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 (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' 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-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm')" }, + { name = "numba", marker = "(python_full_version != '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version != '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'arm64' and sys_platform == 'darwin') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' 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-qwen3-vllm') or (platform_machine != 's390x' 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-qwen3-vllm-metal') or (platform_machine != 's390x' 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-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' 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-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' 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-qwen3-vllm-metal') 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 (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' 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-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version != '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version != '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version != '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version != '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version != '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version != '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version != '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version != '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version != '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version != '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine != 's390x' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine != 's390x' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine != 's390x' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine != 's390x' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version != '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version != '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version != '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version != '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version != '3.12.*' and platform_machine == 's390x' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version != '3.12.*' and platform_machine == 's390x' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version != '3.12.*' and platform_machine == 's390x' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine != 's390x' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and 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 (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine == 's390x' 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 platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine == 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' 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-qwen3-vllm-metal') 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 sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' 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-qwen3-vllm-metal') 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.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and 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 (python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' 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-qwen3-vllm') or (platform_machine != 's390x' 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-qwen3-vllm-metal') or (platform_machine != 's390x' 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-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and 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 (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' 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-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' 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-qwen3-vllm-metal') 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 (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (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-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' 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-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (python_full_version < '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' 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-qwen3-vllm') or (platform_machine != 's390x' 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-qwen3-vllm-metal') or (platform_machine != 's390x' 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-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' 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-diarization-diart') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'linux' and 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 (platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 == 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (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-qwen3-vllm-metal') or (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-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' 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-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-qwen3-vllm-metal') 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 (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "scipy", marker = "(python_full_version != '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version != '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'arm64' and sys_platform == 'darwin') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' 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-qwen3-vllm') or (platform_machine != 's390x' 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-qwen3-vllm-metal') or (platform_machine != 's390x' 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-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' 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-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' 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-qwen3-vllm-metal') 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 (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' 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-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm')" }, + { name = "tiktoken", marker = "(python_full_version != '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version != '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'arm64' and sys_platform == 'darwin') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' 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-qwen3-vllm') or (platform_machine != 's390x' 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-qwen3-vllm-metal') or (platform_machine != 's390x' 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-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' 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-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' 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-qwen3-vllm-metal') 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 (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' 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-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm')" }, + { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version == '3.12.*' and platform_machine != 'arm64' and platform_machine != 's390x' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine != 'arm64' and platform_machine != 's390x' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version != '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version != '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine != 'arm64' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and platform_machine != 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and platform_machine != 's390x' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and platform_machine != 's390x' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and platform_machine != 's390x' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and platform_machine != 's390x' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and platform_machine != 's390x' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and platform_machine != 's390x' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and platform_machine != 's390x' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal')" }, + { name = "torch", version = "2.11.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version != '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version != '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version != '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version != '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version != '3.12.*' and platform_machine != 's390x' and 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 (python_full_version != '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version != '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version != '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version != '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and 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 (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' 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-qwen3-vllm') or (platform_machine != 's390x' 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-qwen3-vllm-metal') or (platform_machine != 's390x' 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-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' 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-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' 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-qwen3-vllm-metal') 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 (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' 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-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm')" }, + { name = "tqdm", marker = "(python_full_version != '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version != '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'arm64' and sys_platform == 'darwin') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' 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-qwen3-vllm') or (platform_machine != 's390x' 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-qwen3-vllm-metal') or (platform_machine != 's390x' 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-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 's390x' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' 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-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' 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-qwen3-vllm-metal') 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 (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' 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-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm')" }, ] wheels = [ { url = "https://files.pythonhosted.org/packages/22/b7/a35232812a2ccfffcb7614ba96a91338551a660a0e9815cee668bf5743f0/mlx_whisper-0.4.3-py3-none-any.whl", hash = "sha256:6b82b6597a994643a3e5496c7bc229a672e5ca308458455bfe276e76ae024489", size = 890544, upload-time = "2025-08-29T14:56:13.815Z" }, @@ -7339,10 +11703,10 @@ name = "nagisa" version = "0.2.11" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "dynet38", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "six", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "dynet38", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "six", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/e1/71/1cc63f4fde1c1ca491ea69b46c3c5bd6bb06f3efa8262f34b227fe25dbf5/nagisa-0.2.11.tar.gz", hash = "sha256:213e8f837c6f7391ea1f56f4fa6047612d117e3f0e9c4f6b93a3a77f78ba6e6f", size = 20930765, upload-time = "2024-01-28T17:32:49.924Z" } wheels = [ @@ -7389,8 +11753,8 @@ name = "nemo-toolkit" version = "2.7.3" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "cuda-bindings", version = "12.9.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "cuda-bindings", version = "13.2.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "cuda-bindings", version = "12.9.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "cuda-bindings", version = "13.2.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary') or (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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "fsspec", version = "2024.12.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, { name = "numba", marker = "(python_full_version < '3.13' and sys_platform == 'darwin') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, @@ -7404,11 +11768,11 @@ dependencies = [ { name = "setuptools", marker = "python_full_version < '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, { name = "tensorboard", marker = "python_full_version < '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, { name = "text-unidecode", marker = "python_full_version < '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.11.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (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') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') 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') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.11.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(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') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' 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-qwen3-vllm-metal') 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' 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-qwen3-vllm-metal') 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.11.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' 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-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.11.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (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') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') 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') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.11.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (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') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' 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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.11.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "tqdm", marker = "python_full_version < '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, { name = "wget", marker = "python_full_version < '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, { name = "wrapt", marker = "python_full_version < '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, @@ -7444,10 +11808,10 @@ asr = [ { name = "packaging", version = "24.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, { name = "pandas", marker = "python_full_version < '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, { name = "peft", marker = "python_full_version < '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "pyannote-core", version = "5.0.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pyannote-core", version = "6.0.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pyannote-metrics", version = "3.2.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pyannote-metrics", version = "4.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pyannote-core", version = "5.0.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pyannote-core", version = "6.0.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pyannote-metrics", version = "3.2.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pyannote-metrics", version = "4.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "pydub", marker = "python_full_version < '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, { name = "pyloudnorm", marker = "python_full_version < '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, { name = "resampy", marker = "python_full_version < '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, @@ -7505,13 +11869,13 @@ name = "nllw" version = "0.1.5" source = { registry = "https://pypi.org/simple" } 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 (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.11.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129') 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 (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart')" }, - { name = "torch", version = "2.11.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 (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.11.0+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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "transformers", version = "4.57.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "transformers", version = "5.8.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, + { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.11.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart')" }, + { name = "torch", version = "2.11.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 (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.11.0+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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "transformers", version = "4.57.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "transformers", version = "5.8.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, ] 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 = [ @@ -7524,9 +11888,9 @@ version = "0.65.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "llvmlite" }, - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/49/61/7299643b9c18d669e04be7c5bcb64d985070d07553274817b45b049e7bfe/numba-0.65.0.tar.gz", hash = "sha256:edad0d9f6682e93624c00125a471ae4df186175d71fd604c983c377cdc03e68b", size = 2764131, upload-time = "2026-04-01T03:52:01.946Z" } wheels = [ @@ -7592,114 +11956,150 @@ name = "numpy" version = "1.26.4" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] sdist = { url = "https://files.pythonhosted.org/packages/65/6e/09db70a523a96d25e115e71cc56a6f9031e7b8cd166c1ac8438307c14058/numpy-1.26.4.tar.gz", hash = "sha256:2a02aba9ed12e4ac4eb3ea9421c420301a0c6460d9830d74a9df87efa4912010", size = 15786129, upload-time = "2024-02-06T00:26:44.495Z" } wheels = [ @@ -7726,331 +12126,771 @@ name = "numpy" version = "2.3.5" 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] sdist = { url = "https://files.pythonhosted.org/packages/76/65/21b3bc86aac7b8f2862db1e808f1ea22b028e30a225a34a5ede9bf8678f2/numpy-2.3.5.tar.gz", hash = "sha256:784db1dcdab56bf0517743e746dfb0f885fc68d948aba86eeec2cba234bdf1c0", size = 20584950, upload-time = "2025-11-16T22:52:42.067Z" } wheels = [ @@ -8112,168 +12952,352 @@ name = "numpy" version = "2.4.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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] sdist = { url = "https://files.pythonhosted.org/packages/d7/9f/b8cef5bffa569759033adda9481211426f12f53299629b410340795c2514/numpy-2.4.4.tar.gz", hash = "sha256:2d390634c5182175533585cc89f3608a4682ccb173cc9bb940b2881c8d6f8fa0", size = 20731587, upload-time = "2026-03-29T13:22:01.298Z" } wheels = [ @@ -8460,7 +13484,7 @@ name = "nvidia-cudnn-cu12" version = "9.17.1.4" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "nvidia-cublas-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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cublas-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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] wheels = [ { url = "https://files.pythonhosted.org/packages/da/55/9987152bd99746b6d5d899a3e920f72f565f5adb4835dc44899382482e2c/nvidia_cudnn_cu12-9.17.1.4-py3-none-manylinux_2_27_aarch64.whl", hash = "sha256:d18d61bdd596fca0dbe459c129f6eb7a24ed2e6de1d7988b0a37ac63184ee05d", size = 646648394, upload-time = "2025-12-22T16:42:08.8Z" }, @@ -8473,7 +13497,7 @@ name = "nvidia-cudnn-cu13" version = "9.19.0.56" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "nvidia-cublas", marker = "(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-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-qwen3-vllm-metal') 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 sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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 (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (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-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cublas", marker = "(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-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' 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' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-qwen3-vllm-metal') 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 sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' 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-qwen3-vllm-metal') 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-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' 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-qwen3-vllm-metal') 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 (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (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-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal')" }, ] wheels = [ { url = "https://files.pythonhosted.org/packages/f1/84/26025437c1e6b61a707442184fa0c03d083b661adf3a3eecfd6d21677740/nvidia_cudnn_cu13-9.19.0.56-py3-none-manylinux_2_27_aarch64.whl", hash = "sha256:6ed29ffaee1176c612daf442e4dd6cfeb6a0caa43ddcbeb59da94953030b1be4", size = 433781201, upload-time = "2026-02-03T20:40:53.805Z" }, @@ -8502,7 +13526,7 @@ name = "nvidia-cufft" version = "12.0.0.61" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "nvidia-nvjitlink", marker = "(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-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-qwen3-vllm-metal') 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 sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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 (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (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-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-nvjitlink", marker = "(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-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' 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' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-qwen3-vllm-metal') 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 sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' 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-qwen3-vllm-metal') 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-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' 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-qwen3-vllm-metal') 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 (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (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-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal')" }, ] wheels = [ { url = "https://files.pythonhosted.org/packages/8b/ae/f417a75c0259e85c1d2f83ca4e960289a5f814ed0cea74d18c353d3e989d/nvidia_cufft-12.0.0.61-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:2708c852ef8cd89d1d2068bdbece0aa188813a0c934db3779b9b1faa8442e5f5", size = 214053554, upload-time = "2025-09-04T08:31:38.196Z" }, @@ -8515,7 +13539,7 @@ name = "nvidia-cufft-cu12" version = "11.4.1.4" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "nvidia-nvjitlink-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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-nvjitlink-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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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" }, @@ -8566,9 +13590,9 @@ name = "nvidia-cusolver" version = "12.0.4.66" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "nvidia-cublas", marker = "(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-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-qwen3-vllm-metal') 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 sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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 (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (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-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cusparse", marker = "(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-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-qwen3-vllm-metal') 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 sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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 (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (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-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-nvjitlink", marker = "(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-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-qwen3-vllm-metal') 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 sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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 (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (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-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cublas", marker = "(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-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' 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' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-qwen3-vllm-metal') 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 sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' 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-qwen3-vllm-metal') 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-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' 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-qwen3-vllm-metal') 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 (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (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-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal')" }, + { name = "nvidia-cusparse", marker = "(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-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' 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' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-qwen3-vllm-metal') 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 sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' 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-qwen3-vllm-metal') 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-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' 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-qwen3-vllm-metal') 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 (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (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-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal')" }, + { name = "nvidia-nvjitlink", marker = "(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-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' 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' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-qwen3-vllm-metal') 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 sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' 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-qwen3-vllm-metal') 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-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' 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-qwen3-vllm-metal') 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 (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (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-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal')" }, ] wheels = [ { url = "https://files.pythonhosted.org/packages/c8/c3/b30c9e935fc01e3da443ec0116ed1b2a009bb867f5324d3f2d7e533e776b/nvidia_cusolver-12.0.4.66-py3-none-manylinux_2_27_aarch64.whl", hash = "sha256:02c2457eaa9e39de20f880f4bd8820e6a1cfb9f9a34f820eb12a155aa5bc92d2", size = 223467760, upload-time = "2025-09-04T08:33:04.222Z" }, @@ -8581,9 +13605,9 @@ name = "nvidia-cusolver-cu12" version = "11.7.5.82" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "nvidia-cublas-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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cusparse-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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-nvjitlink-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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cublas-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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cusparse-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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-nvjitlink-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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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" }, @@ -8596,7 +13620,7 @@ name = "nvidia-cusparse" version = "12.6.3.3" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "nvidia-nvjitlink", marker = "(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-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-qwen3-vllm-metal') 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 sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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 (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (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-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-nvjitlink", marker = "(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-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' 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' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-qwen3-vllm-metal') 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 sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' 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-qwen3-vllm-metal') 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-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' 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-qwen3-vllm-metal') 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 (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (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-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal')" }, ] wheels = [ { url = "https://files.pythonhosted.org/packages/f8/94/5c26f33738ae35276672f12615a64bd008ed5be6d1ebcb23579285d960a9/nvidia_cusparse-12.6.3.3-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:80bcc4662f23f1054ee334a15c72b8940402975e0eab63178fc7e670aa59472c", size = 162155568, upload-time = "2025-09-04T08:33:42.864Z" }, @@ -8609,7 +13633,7 @@ name = "nvidia-cusparse-cu12" version = "12.5.10.65" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "nvidia-nvjitlink-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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-nvjitlink-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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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" }, @@ -8654,8 +13678,8 @@ version = "4.5.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "cuda-python", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "typing-extensions", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, ] wheels = [ @@ -8757,8 +13781,8 @@ name = "omegaconf" version = "2.3.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "antlr4-python3-runtime", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-diarization-diart' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pyyaml", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-diarization-diart' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "antlr4-python3-runtime", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-diarization-diart' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pyyaml", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-diarization-diart' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] 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 = [ @@ -8802,13 +13826,13 @@ version = "1.26.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "flatbuffers" }, - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", version = "24.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.13' or extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "protobuf", version = "5.29.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "protobuf", version = "6.33.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.13' or extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "packaging", version = "24.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.13' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, + { name = "protobuf", version = "5.29.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "protobuf", version = "6.33.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.13' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, ] wheels = [ { url = "https://files.pythonhosted.org/packages/d4/81/29a9eb470994a75eb7b3ccf32be314d7c66675a00ac7b50294816cc2db27/onnxruntime-1.26.0-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:ee1109ef4ef27cad90e823399e61e03b3c6c7bfe0fb820b4baf3678c15be8b3c", size = 18005108, upload-time = "2026-05-08T19:08:11.728Z" }, @@ -8895,8 +13919,8 @@ name = "opencv-python-headless" version = "4.13.0.92" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] wheels = [ { url = "https://files.pythonhosted.org/packages/79/42/2310883be3b8826ac58c3f2787b9358a2d46923d61f88fedf930bc59c60c/opencv_python_headless-4.13.0.92-cp37-abi3-macosx_13_0_arm64.whl", hash = "sha256:1a7d040ac656c11b8c38677cc8cccdc149f98535089dbe5b081e80a4e5903209", size = 46247192, upload-time = "2026-02-05T07:01:35.187Z" }, @@ -8997,8 +14021,8 @@ name = "opentelemetry-proto" version = "1.41.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "protobuf", version = "5.29.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "protobuf", version = "6.33.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "protobuf", version = "5.29.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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 == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' 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-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "protobuf", version = "6.33.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/99/e8/633c6d8a9c8840338b105907e55c32d3da1983abab5e52f899f72a82c3d1/opentelemetry_proto-1.41.1.tar.gz", hash = "sha256:4b9d2eb631237ea43b80e16c073af438554e32bc7e9e3f8ca4a9582f900020e5", size = 45670, upload-time = "2026-04-24T13:15:49.768Z" } wheels = [ @@ -9050,16 +14074,16 @@ name = "optuna" version = "4.8.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "alembic", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-diarization-diart' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "colorlog", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-diarization-diart' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') 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-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", version = "24.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm')" }, - { name = "pyyaml", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-diarization-diart' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "sqlalchemy", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-diarization-diart' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "tqdm", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-diarization-diart' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "alembic", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-diarization-diart' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "colorlog", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-diarization-diart' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "packaging", version = "24.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pyyaml", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-diarization-diart' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "sqlalchemy", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-diarization-diart' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "tqdm", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-diarization-diart' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/bf/9b/62f120fb2ecbc4338bee70c5a3671c8e561714f3aa1a046b897ff142050e/optuna-4.8.0.tar.gz", hash = "sha256:6f7043e9f8ecb5e607af86a7eb00fb5ec2be26c3b08c201209a73d36aff37a38", size = 482603, upload-time = "2026-03-16T04:59:58.659Z" } wheels = [ @@ -9165,226 +14189,666 @@ name = "packaging" version = "24.2" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] sdist = { url = "https://files.pythonhosted.org/packages/d0/63/68dbb6eb2de9cb10ee4c9c14a0148804425e13c4fb20d61cce69f53106da/packaging-24.2.tar.gz", hash = "sha256:c228a6dc5e932d346bc5739379109d49e8853dd8223571c7c5b55260edc0b97f", size = 163950, upload-time = "2024-11-08T09:47:47.202Z" } wheels = [ @@ -9396,381 +14860,601 @@ name = "packaging" version = "26.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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] sdist = { url = "https://files.pythonhosted.org/packages/d7/f1/e7a6dd94a8d4a5626c03e4e99c87f241ba9e350cd9e6d75123f992427270/packaging-26.2.tar.gz", hash = "sha256:ff452ff5a3e828ce110190feff1178bb1f2ea2281fa2075aadb987c2fb221661", size = 228134, upload-time = "2026-04-24T20:15:23.917Z" } wheels = [ @@ -9782,11 +15466,11 @@ name = "pandas" version = "3.0.3" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "python-dateutil" }, - { name = "tzdata", marker = "sys_platform == 'emscripten' or sys_platform == 'win32' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "tzdata", marker = "sys_platform == 'emscripten' or sys_platform == 'win32' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/f8/87/4341c6252d1c47b08768c3d25ac487362bf403f0313ddae4a2a26c9b1b4c/pandas-3.0.3.tar.gz", hash = "sha256:696a4a00a2a2a35d4e5deb3fc946641b96c944f02230e4f76137fe35d806c4fc", size = 4651414, upload-time = "2026-05-11T18:54:29.21Z" } wheels = [ @@ -9846,19 +15530,19 @@ name = "peft" version = "0.19.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "accelerate", version = "1.12.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "accelerate", version = "1.13.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "accelerate", version = "1.12.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "accelerate", version = "1.13.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, { name = "packaging", version = "24.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, { name = "psutil", marker = "python_full_version < '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, { 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, { name = "safetensors", marker = "python_full_version < '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.11.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (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') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') 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') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.11.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(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') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' 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-qwen3-vllm-metal') 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' 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-qwen3-vllm-metal') 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.11.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' 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-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.11.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (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') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') 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') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.11.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (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') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' 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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.11.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "tqdm", marker = "python_full_version < '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, { name = "transformers", version = "4.57.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, ] @@ -9964,8 +15648,8 @@ name = "pooch" version = "1.9.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "packaging", version = "24.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.13' or extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, + { name = "packaging", version = "24.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.13' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, { name = "platformdirs" }, { name = "requests" }, ] @@ -10123,226 +15807,666 @@ name = "protobuf" version = "5.29.6" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] sdist = { url = "https://files.pythonhosted.org/packages/7e/57/394a763c103e0edf87f0938dafcd918d53b4c011dfc5c8ae80f3b0452dbb/protobuf-5.29.6.tar.gz", hash = "sha256:da9ee6a5424b6b30fd5e45c5ea663aef540ca95f9ad99d1e887e819cdf9b8723", size = 425623, upload-time = "2026-02-04T22:54:40.584Z" } wheels = [ @@ -10359,381 +16483,601 @@ name = "protobuf" version = "6.33.6" 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] sdist = { url = "https://files.pythonhosted.org/packages/66/70/e908e9c5e52ef7c3a6c7902c9dfbb34c7e29c25d2f81ade3856445fd5c94/protobuf-6.33.6.tar.gz", hash = "sha256:a6768d25248312c297558af96a9f9c929e8c4cee0659cb07e780731095f38135", size = 444531, upload-time = "2026-03-18T19:05:00.988Z" } wheels = [ @@ -10795,35 +17139,393 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/e0/a9/023730ba63db1e494a271cb018dcd361bd2c917ba7004c3e49d5daf795a2/py_cpuinfo-9.0.0-py3-none-any.whl", hash = "sha256:859625bc251f64e21f077d099d4162689c762b5d6a4c3c97553d56241c9674d5", size = 22335, upload-time = "2022-10-25T20:38:27.636Z" }, ] +[[package]] +name = "pyannote-audio" +version = "3.3.2" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'", + "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 != 's390x' and sys_platform == 'win32'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'", + "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 != 's390x' and sys_platform == 'darwin'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin'", +] +dependencies = [ + { name = "asteroid-filterbanks", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "einops", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "lightning", version = "2.4.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "omegaconf", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pyannote-core", version = "6.0.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pyannote-database", version = "6.1.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pyannote-metrics", version = "4.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pyannote-pipeline", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pytorch-metric-learning", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "rich", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "semver", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "soundfile", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "speechbrain", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "tensorboardx", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' 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-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' 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-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch-audiomentations", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.8.0", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' 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-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' 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-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' 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-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' 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-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' 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-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchmetrics", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e9/00/3b96ca7ad0641e4f64cfaa2af153dc7da0998ff972280e1c1681b1fcc243/pyannote_audio-3.3.2.tar.gz", hash = "sha256:b2115e86b0db5faedb9f36ee1a150cebd07f7758e65e815accdac1a12ca9c777", size = 13664309, upload-time = "2024-09-11T11:07:48.274Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/17/e6/76049470d90217f9a15a34abf3e92d782cabc3fb4ab27515c9baaa5495d1/pyannote.audio-3.3.2-py2.py3-none-any.whl", hash = "sha256:599c694acd5d193215147ff82d0bf638bb191204ed502bd9fde8ff582e20aa1c", size = 898707, upload-time = "2024-09-11T11:07:46.12Z" }, + { url = "https://files.pythonhosted.org/packages/b7/9a/98a8992727e762b031ed30451d5726ece46cf8bb7b872a9dba5cef011e5d/pyannote_audio-3.3.2-py2.py3-none-any.whl", hash = "sha256:23e0dcedda920cb2e154e146bcd9663289ee7942d0e012663dad76f2e571ebeb", size = 897827, upload-time = "2025-11-26T16:09:04.748Z" }, +] + [[package]] name = "pyannote-audio" version = "3.4.0" source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", +] dependencies = [ - { name = "asteroid-filterbanks" }, - { name = "einops" }, - { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "huggingface-hub", version = "1.14.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "lightning", version = "2.4.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "lightning", version = "2.6.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm')" }, - { name = "omegaconf" }, - { name = "pyannote-core", version = "5.0.0", source = { registry = "https://pypi.org/simple" } }, - { name = "pyannote-database", version = "5.1.3", source = { registry = "https://pypi.org/simple" } }, - { name = "pyannote-metrics", version = "3.2.1", source = { registry = "https://pypi.org/simple" } }, - { name = "pyannote-pipeline" }, - { name = "pytorch-metric-learning" }, - { name = "rich" }, - { name = "semver" }, - { name = "soundfile" }, - { name = "speechbrain" }, - { name = "tensorboardx" }, - { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch-audiomentations" }, - { 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchmetrics" }, + { name = "asteroid-filterbanks", marker = "python_full_version >= '3.13' or extra != 'extra-14-whisperlivekit-canary' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "einops", marker = "python_full_version >= '3.13' or extra != 'extra-14-whisperlivekit-canary' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "huggingface-hub", version = "1.14.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "lightning", version = "2.4.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "lightning", version = "2.6.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "omegaconf", marker = "python_full_version >= '3.13' or extra != 'extra-14-whisperlivekit-canary' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pyannote-core", version = "5.0.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.13' or extra != 'extra-14-whisperlivekit-canary' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pyannote-database", version = "5.1.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.13' or extra != 'extra-14-whisperlivekit-canary' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pyannote-metrics", version = "3.2.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.13' or extra != 'extra-14-whisperlivekit-canary' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pyannote-pipeline", marker = "python_full_version >= '3.13' or extra != 'extra-14-whisperlivekit-canary' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pytorch-metric-learning", marker = "python_full_version >= '3.13' or extra != 'extra-14-whisperlivekit-canary' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "rich", marker = "python_full_version >= '3.13' or extra != 'extra-14-whisperlivekit-canary' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "semver", marker = "python_full_version >= '3.13' or extra != 'extra-14-whisperlivekit-canary' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "soundfile", marker = "python_full_version >= '3.13' or extra != 'extra-14-whisperlivekit-canary' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "speechbrain", marker = "python_full_version >= '3.13' or extra != 'extra-14-whisperlivekit-canary' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "tensorboardx", marker = "python_full_version >= '3.13' or extra != 'extra-14-whisperlivekit-canary' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version >= '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch-audiomentations", marker = "python_full_version >= '3.13' or extra != 'extra-14-whisperlivekit-canary' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.8.0", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' 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-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchmetrics", marker = "python_full_version >= '3.13' or extra != 'extra-14-whisperlivekit-canary' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] 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" } wheels = [ @@ -10835,244 +17537,316 @@ name = "pyannote-core" version = "5.0.0" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] dependencies = [ - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "scipy", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "sortedcontainers", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "typing-extensions", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "scipy", marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "sortedcontainers", marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "typing-extensions", marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] 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 = [ @@ -11084,159 +17858,599 @@ name = "pyannote-core" version = "6.0.1" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] dependencies = [ - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "pandas", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "sortedcontainers", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pandas", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "sortedcontainers", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/a3/be/4a35ea31c685aef801f7f35c193e7766ca1bb948ae497a625cbfaa8c31ba/pyannote_core-6.0.1.tar.gz", hash = "sha256:4b4ada3276f6df4e073fa79166636e3597d0dcb5a0fe26014a3477867cc033fb", size = 327540, upload-time = "2025-09-16T09:24:39.081Z" } wheels = [ @@ -11248,242 +18462,314 @@ name = "pyannote-database" version = "5.1.3" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] dependencies = [ - { name = "pandas", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pyannote-core", version = "5.0.0", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pyyaml", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "typer", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pandas", marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pyannote-core", version = "5.0.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pyyaml", marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "typer", marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] 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 = [ @@ -11495,159 +18781,599 @@ name = "pyannote-database" version = "6.1.1" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] dependencies = [ - { name = "pandas", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "pyannote-core", version = "6.0.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "pyyaml", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, + { name = "pandas", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pyannote-core", version = "6.0.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pyyaml", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/65/45/6210274c187cc457e854be8b56c6819fa14376f27e7e2b6021b2aa02449a/pyannote_database-6.1.1.tar.gz", hash = "sha256:bbe76da738257a9e64061123d9694ad7e949c4f171d91a9269606d873528cd10", size = 112225, upload-time = "2025-12-07T06:33:10.296Z" } wheels = [ @@ -11659,251 +19385,323 @@ name = "pyannote-metrics" version = "3.2.1" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] dependencies = [ - { name = "docopt", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "matplotlib", version = "3.5.3", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "matplotlib", version = "3.10.9", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pandas", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pyannote-core", version = "5.0.0", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pyannote-database", version = "5.1.3", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "scikit-learn", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "scipy", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "sympy", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "tabulate", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "docopt", marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "matplotlib", version = "3.5.3", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "matplotlib", version = "3.10.9", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pandas", marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pyannote-core", version = "5.0.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pyannote-database", version = "5.1.3", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "scikit-learn", marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "scipy", marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "sympy", marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "tabulate", marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] 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 = [ @@ -11915,162 +19713,602 @@ name = "pyannote-metrics" version = "4.1" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] dependencies = [ - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "pandas", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "pyannote-core", version = "6.0.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "pyannote-database", version = "6.1.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "scikit-learn", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "scipy", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pandas", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pyannote-core", version = "6.0.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pyannote-database", version = "6.1.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "scikit-learn", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "scipy", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/74/ba/7dbc2f790d5e321e46dc1e250ff00b69cdefc0c5695b811e96a4b932cddd/pyannote_metrics-4.1.tar.gz", hash = "sha256:afe24c54ee0799e8cfbe8ee85fa517793c3450bb7eae8fedd1a77ccec0343f7e", size = 883419, upload-time = "2026-05-06T16:33:10.163Z" } wheels = [ @@ -12085,8 +20323,10 @@ dependencies = [ { name = "docopt" }, { name = "filelock" }, { name = "optuna" }, - { name = "pyannote-core", version = "5.0.0", source = { registry = "https://pypi.org/simple" } }, - { name = "pyannote-database", version = "5.1.3", source = { registry = "https://pypi.org/simple" } }, + { name = "pyannote-core", version = "5.0.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pyannote-core", version = "6.0.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' 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-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pyannote-database", version = "5.1.3", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pyannote-database", version = "6.1.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' 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-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "pyyaml" }, { name = "scikit-learn" }, { name = "tqdm" }, @@ -12438,10 +20678,10 @@ name = "pytest" version = "9.0.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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "colorama", marker = "sys_platform == 'win32' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "iniconfig" }, - { name = "packaging", version = "24.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.13' or extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, + { name = "packaging", version = "24.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.13' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, { name = "pluggy" }, { name = "pygments" }, ] @@ -12456,7 +20696,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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "typing-extensions", marker = "python_full_version < '3.13' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 = [ @@ -12507,20 +20747,20 @@ name = "pytorch-lightning" version = "2.6.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "fsspec", version = "2024.12.0", source = { registry = "https://pypi.org/simple" }, extra = ["http"], marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "fsspec", version = "2026.2.0", source = { registry = "https://pypi.org/simple" }, extra = ["http"], marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm')" }, - { name = "lightning-utilities", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-diarization-diart' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", version = "24.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm')" }, - { name = "pyyaml", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-diarization-diart' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.11.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (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') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') 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') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.11.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(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') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' 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-qwen3-vllm-metal') 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' 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-qwen3-vllm-metal') 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.11.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchmetrics", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-diarization-diart' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "tqdm", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-diarization-diart' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "typing-extensions", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-diarization-diart' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "fsspec", version = "2024.12.0", source = { registry = "https://pypi.org/simple" }, extra = ["http"], marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "fsspec", version = "2026.2.0", source = { registry = "https://pypi.org/simple" }, extra = ["http"], marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "lightning-utilities", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-diarization-diart' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "packaging", version = "24.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pyyaml", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-diarization-diart' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.11.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (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') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') 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') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.11.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (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') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' 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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.11.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchmetrics", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-diarization-diart' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "tqdm", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-diarization-diart' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "typing-extensions", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-diarization-diart' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] 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 = [ @@ -12532,12 +20772,12 @@ name = "pytorch-metric-learning" version = "2.9.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "scikit-learn" }, - { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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 (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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" } @@ -12663,8 +20903,8 @@ dependencies = [ { name = "apache-tvm-ffi", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, { name = "einops", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, { name = "nvidia-cutlass-dsl", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, - { name = "torch", version = "2.11.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.11.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' 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 sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.11.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' 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-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.11.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' 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 sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "torch-c-dlpack-ext", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, ] sdist = { url = "https://files.pythonhosted.org/packages/2a/58/58b82e91b236539f424ff5681e7095b1f2860ddfb7778fe0be14d8fb58de/quack_kernels-0.4.1.tar.gz", hash = "sha256:9d7d6ba412bc0c8a9b1331c52a73db76280adb9dc2f2750df4851ddabef1466b", size = 274766, upload-time = "2026-04-30T14:37:55.65Z" } @@ -12677,17 +20917,17 @@ name = "qwen-asr" version = "0.0.6" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "accelerate", version = "1.12.0", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "flask", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "gradio", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "librosa", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nagisa", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pytz", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "qwen-omni-utils", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "soundfile", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "sox", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "soynlp", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "transformers", version = "4.57.6", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "accelerate", version = "1.12.0", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "flask", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "gradio", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "librosa", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nagisa", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pytz", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "qwen-omni-utils", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "soundfile", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "sox", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "soynlp", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "transformers", version = "4.57.6", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/7f/5b/56c5175d1a4d6ed8602003385570304305e4ae9c40b999d12d75a70c0561/qwen_asr-0.0.6.tar.gz", hash = "sha256:294893f2340dc2d58d1f1d1cb8ce26ac0a79f254805ab432dda2892bd5c8d13c", size = 146666, upload-time = "2026-01-30T03:24:02.697Z" } wheels = [ @@ -12699,12 +20939,12 @@ name = "qwen-omni-utils" version = "0.0.9" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "av", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "librosa", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", version = "24.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pillow", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "requests", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "av", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "librosa", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "packaging", version = "24.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pillow", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "requests", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/a2/27/81a51b10ef6d1a4f158498089530eb4307689d75adf6bd34f6632eda3099/qwen_omni_utils-0.0.9.tar.gz", hash = "sha256:c598269c7069afb4d154f8ea523972e8d8794a978fffed89cb4d87c326f97447", size = 8632, upload-time = "2026-02-10T09:45:30.538Z" } wheels = [ @@ -12716,25 +20956,25 @@ name = "qwen3-asr-causal" version = "0.1.0" source = { editable = "third_party/qwen3-asr-causal" } dependencies = [ - { 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "huggingface-hub", version = "1.14.0", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version != '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "soundfile", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-cu129' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.11.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-vllm-metal') 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-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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 (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal')" }, - { name = "torch", version = "2.11.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' 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-qwen3-vllm-metal') 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.11.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "transformers", version = "4.57.6", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "transformers", version = "5.8.1", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "huggingface-hub", version = "1.14.0", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version != '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "soundfile", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-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' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.11.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' 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-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' 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-qwen3-vllm-metal') 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 (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal')" }, + { name = "torch", version = "2.11.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.11.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "transformers", version = "4.57.6", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "transformers", version = "5.8.1", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] [package.optional-dependencies] metal = [ { name = "mlx", marker = "(platform_machine == 'arm64' and sys_platform == 'darwin') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart')" }, - { name = "vllm-metal", extra = ["stt"], marker = "(python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version != '3.12.*' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "vllm-metal", extra = ["stt"], marker = "(python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version != '3.12.*' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] streaming = [ { name = "qwen-asr" }, @@ -12742,7 +20982,7 @@ streaming = [ vllm = [ { name = "qwen-asr" }, { name = "torchvision", version = "0.26.0", source = { registry = "https://pypi.org/simple" }, marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, - { name = "vllm", extra = ["audio"], marker = "(sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "vllm", extra = ["audio"], marker = "(sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] [package.metadata] @@ -12827,7 +21067,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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "typing-extensions", marker = "python_full_version < '3.13' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] 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 = [ @@ -13110,167 +21350,239 @@ name = "ruamel-yaml" version = "0.18.17" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] dependencies = [ - { name = "ruamel-yaml-clib", marker = "(python_full_version >= '3.13' and platform_python_implementation == 'CPython') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' 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') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "ruamel-yaml-clib", marker = "(python_full_version >= '3.13' and platform_python_implementation == 'CPython') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation == 'CPython' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/3a/2b/7a1f1ebcd6b3f14febdc003e658778d81e76b40df2267904ee6b13f0c5c6/ruamel_yaml-0.18.17.tar.gz", hash = "sha256:9091cd6e2d93a3a4b157ddb8fabf348c3de7f1fb1381346d985b6b247dcd8d3c", size = 149602, upload-time = "2025-12-17T20:02:55.757Z" } wheels = [ @@ -13282,226 +21594,666 @@ name = "ruamel-yaml" version = "0.19.1" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] sdist = { url = "https://files.pythonhosted.org/packages/c7/3b/ebda527b56beb90cb7652cb1c7e4f91f48649fbcd8d2eb2fb6e77cd3329b/ruamel_yaml-0.19.1.tar.gz", hash = "sha256:53eb66cd27849eff968ebf8f0bf61f46cdac2da1d1f3576dd4ccee9b25c31993", size = 142709, upload-time = "2026-01-02T16:50:31.84Z" } wheels = [ @@ -13592,7 +22344,7 @@ name = "safehttpx" version = "0.1.7" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "httpx", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "httpx", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/89/d1/4282284d9cf1ee873607a46442da977fc3c985059315ab23610be31d5885/safehttpx-0.1.7.tar.gz", hash = "sha256:db201c0978c41eddb8bb480f3eee59dd67304fdd91646035e9d9a720049a9d23", size = 10385, upload-time = "2025-10-24T18:30:09.783Z" } wheels = [ @@ -13627,9 +22379,9 @@ version = "1.8.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "joblib" }, - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "scipy" }, { name = "threadpoolctl" }, ] @@ -13666,9 +22418,9 @@ name = "scipy" version = "1.17.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/7a/97/5a3609c4f8d58b039179648e62dd220f89864f56f7357f5d4f45c29eb2cc/scipy-1.17.1.tar.gz", hash = "sha256:95d8e012d8cb8816c226aef832200b1d45109ed4464303e997c5b13122b297c0", size = 30573822, upload-time = "2026-02-23T00:26:24.851Z" } wheels = [ @@ -13777,8 +22529,8 @@ name = "sentry-sdk" version = "2.59.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "certifi", marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "urllib3", marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "certifi", marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "urllib3", marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/65/e0/9bf5e5fc7442b10880f3ec0eff0ef4208b84a099606f343ec4f5445227fb/sentry_sdk-2.59.0.tar.gz", hash = "sha256:cd265808ef8bf3f3edf69b527c0a0b2b6b1322762679e55b8987db2e9584aec1", size = 447331, upload-time = "2026-05-04T12:19:06.538Z" } wheels = [ @@ -13868,11 +22620,11 @@ name = "skops" version = "0.14.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", version = "24.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.13' or extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "packaging", version = "24.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.13' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, { name = "prettytable" }, { name = "scikit-learn" }, { name = "scipy" }, @@ -13931,9 +22683,9 @@ version = "0.13.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "cffi" }, - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/e1/41/9b873a8c055582859b239be17902a85339bec6a30ad162f98c9b0288a2cc/soundfile-0.13.1.tar.gz", hash = "sha256:b2c68dab1e30297317080a5b43df57e302584c49e2942defdde0acccc53f0e5b", size = 46156, upload-time = "2025-01-25T09:17:04.831Z" } wheels = [ @@ -13951,9 +22703,9 @@ name = "sox" version = "1.5.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "typing-extensions", marker = "(python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "typing-extensions", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/3d/a2/d8e0d8fd7abf509ead4a2cb0fb24e5758b5330166bf9223d5cb9f98a7e8d/sox-1.5.0.tar.gz", hash = "sha256:12c7be5bb1f548d891fe11e82c08cf5f1a1d74e225298f60082e5aeb2469ada0", size = 63905, upload-time = "2024-03-20T16:59:37.385Z" } @@ -13962,9 +22714,9 @@ name = "soxr" version = "1.1.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/ed/11/27cebce4a108f77afea7c80545115536b45e3f11ebfb914f638fdd9ba847/soxr-1.1.0.tar.gz", hash = "sha256:9f228ae21c78fa9359ca98d8a5e8e91f30639e438e574133dace62c5b5309e44", size = 173067, upload-time = "2026-05-03T00:15:18.214Z" } wheels = [ @@ -13985,11 +22737,11 @@ name = "soynlp" version = "0.0.493" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "psutil", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "scikit-learn", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "scipy", marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "psutil", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "scikit-learn", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "scipy", marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/7d/05/fb3f0c9248e60a0224e77198c31517b93b92d6060873b641caf474d42993/soynlp-0.0.493.tar.gz", hash = "sha256:4b20b825edbcadb9ebd494de54d8ca50b0ee317fe58d090e8b509d733422136a", size = 405393, upload-time = "2019-08-25T05:28:00.755Z" } wheels = [ @@ -14001,25 +22753,25 @@ name = "speechbrain" version = "1.1.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "huggingface-hub", version = "1.14.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "hyperpyyaml", version = "1.2.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "hyperpyyaml", version = "1.2.3", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm')" }, + { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "huggingface-hub", version = "1.14.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "hyperpyyaml", version = "1.2.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "hyperpyyaml", version = "1.2.3", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "joblib" }, - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", version = "24.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "packaging", version = "24.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "requests" }, { name = "scipy" }, { name = "sentencepiece" }, { name = "soundfile" }, - { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "tqdm" }, ] sdist = { url = "https://files.pythonhosted.org/packages/95/df/782cca3897a75bbeb5242026bc8f24d3c14d44ffc413c549d611e988e890/speechbrain-1.1.0.tar.gz", hash = "sha256:669ed0903c2aebc0d5daffc69fdbbfc822e1e2c094be45c8160ceecc9c763cd3", size = 1730288, upload-time = "2026-03-31T16:43:03.324Z" } @@ -14032,8 +22784,8 @@ name = "sqlalchemy" version = "2.0.49" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "greenlet", marker = "(python_full_version < '3.13' and platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine == 'WIN32' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine == 'ppc64le' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') 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-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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'WIN32' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'ppc64le' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'WIN32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'WIN32' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'WIN32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'WIN32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'WIN32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'WIN32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'WIN32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'WIN32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'WIN32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'ppc64le' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'ppc64le' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'ppc64le' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'ppc64le' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'ppc64le' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'ppc64le' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'ppc64le' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'ppc64le' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'ppc64le' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "typing-extensions", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-diarization-diart' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "greenlet", marker = "(python_full_version < '3.13' and platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and platform_machine == 'WIN32' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and platform_machine == 'ppc64le' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and platform_machine == 'win32' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and platform_machine == 'AMD64' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine == 'WIN32' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine == 'aarch64' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine == 'amd64' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine == 'ppc64le' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine == 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine == 'x86_64' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine == 'AMD64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine == 'WIN32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine == 'aarch64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine == 'amd64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine == 'ppc64le' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine == 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') 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-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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'WIN32' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'ppc64le' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'WIN32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'WIN32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'WIN32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'WIN32' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'WIN32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'WIN32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'WIN32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'WIN32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'WIN32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'WIN32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'WIN32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'ppc64le' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'ppc64le' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'ppc64le' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'ppc64le' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'ppc64le' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'ppc64le' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'ppc64le' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'ppc64le' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'ppc64le' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'ppc64le' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'ppc64le' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'win32' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "typing-extensions", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-diarization-diart' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/09/45/461788f35e0364a8da7bda51a1fe1b09762d0c32f12f63727998d85a873b/sqlalchemy-2.0.49.tar.gz", hash = "sha256:d15950a57a210e36dd4cec1aac22787e2a4d57ba9318233e2ef8b2daf9ff2d5f", size = 9898221, upload-time = "2026-04-03T16:38:11.704Z" } wheels = [ @@ -14099,8 +22851,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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "audioop-lts", marker = "python_full_version >= '3.13' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "standard-chunk", marker = "python_full_version >= '3.13' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 = [ @@ -14121,7 +22873,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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "audioop-lts", marker = "python_full_version >= '3.13' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 = [ @@ -14134,7 +22886,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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "typing-extensions", marker = "python_full_version < '3.13' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 = [ @@ -14215,13 +22967,13 @@ name = "tensorboardx" version = "2.6.5" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", version = "24.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm')" }, - { name = "protobuf", version = "5.29.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "protobuf", version = "6.33.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "packaging", version = "24.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "protobuf", version = "5.29.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "protobuf", version = "6.33.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/48/a9/fc520ea91ab1f3ba51cbf3fe24f2b6364ed3b49046969e0868d46d6da372/tensorboardx-2.6.5.tar.gz", hash = "sha256:ca176db3997ee8c07d2eb77381225956a3fd1c10c91beafab1f17069adc47017", size = 4770195, upload-time = "2026-04-03T15:40:23.803Z" } wheels = [ @@ -14294,11 +23046,11 @@ dependencies = [ { name = "apache-tvm-ffi", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, { name = "cloudpickle", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, { name = "ml-dtypes", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "psutil", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, - { name = "torch", version = "2.11.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.11.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' 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 sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.11.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' 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-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.11.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' 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 sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "torch-c-dlpack-ext", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, { name = "tqdm", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, { name = "typing-extensions", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, @@ -14316,8 +23068,8 @@ name = "tokenizers" version = "0.22.2" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "huggingface-hub", version = "1.14.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, + { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "huggingface-hub", version = "1.14.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, ] 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 = [ @@ -14376,66 +23128,114 @@ name = "torch" version = "2.8.0" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] dependencies = [ - { name = "filelock", marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "fsspec", version = "2024.12.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "fsspec", version = "2026.2.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "jinja2", marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "networkx", marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "sympy", marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "typing-extensions", marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "filelock", marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "fsspec", version = "2024.12.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "fsspec", version = "2026.2.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "jinja2", marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "networkx", marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "sympy", marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "typing-extensions", marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] wheels = [ { 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" }, @@ -14461,196 +23261,364 @@ name = "torch" version = "2.8.0+cpu" source = { registry = "https://download.pytorch.org/whl/cpu" } resolution-markers = [ - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] dependencies = [ - { name = "filelock", marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "fsspec", version = "2024.12.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "fsspec", version = "2026.2.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "jinja2", marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "networkx", marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "sympy", marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "typing-extensions", marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "filelock", marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "fsspec", version = "2024.12.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' 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-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "fsspec", version = "2026.2.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "jinja2", marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "networkx", marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "sympy", marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "typing-extensions", marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] wheels = [ { url = "https://download-r2.pytorch.org/whl/cpu/torch-2.8.0%2Bcpu-cp311-cp311-linux_s390x.whl", hash = "sha256:2bfc013dd6efdc8f8223a0241d3529af9f315dffefb53ffa3bf14d3f10127da6", upload-time = "2025-10-01T23:33:07Z" }, @@ -14678,260 +23646,548 @@ name = "torch" version = "2.11.0" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] dependencies = [ - { name = "cuda-bindings", version = "13.2.0", 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (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-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "cuda-toolkit", version = "13.0.2", source = { registry = "https://pypi.org/simple" }, extra = ["cublas", "cudart", "cufft", "cufile", "cupti", "curand", "cusolver", "cusparse", "nvjitlink", "nvrtc", "nvtx"], 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (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-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "filelock", marker = "(platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129') 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 (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart')" }, - { name = "fsspec", version = "2024.12.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (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') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') 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') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "fsspec", version = "2026.2.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (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') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') 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') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "jinja2", marker = "(platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129') 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 (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart')" }, - { name = "networkx", marker = "(platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129') 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 (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart')" }, - { name = "nvidia-cudnn-cu13", 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (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-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cusparselt-cu13", 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (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-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-nccl-cu13", 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (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-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-nvshmem-cu13", 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (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-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "setuptools", marker = "(platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129') 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 (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart')" }, - { name = "sympy", marker = "(platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129') 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 (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart')" }, - { name = "triton", 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (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-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "typing-extensions", marker = "(platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129') 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 (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart')" }, + { name = "cuda-bindings", version = "13.2.0", 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' 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-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "cuda-toolkit", version = "13.0.2", source = { registry = "https://pypi.org/simple" }, extra = ["cublas", "cudart", "cufft", "cufile", "cupti", "curand", "cusolver", "cusparse", "nvjitlink", "nvrtc", "nvtx"], 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' 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-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "filelock", marker = "(platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart')" }, + { name = "fsspec", version = "2024.12.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (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') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') 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') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "fsspec", version = "2026.2.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "jinja2", marker = "(platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart')" }, + { name = "networkx", marker = "(platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart')" }, + { name = "nvidia-cudnn-cu13", 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' 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-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cusparselt-cu13", 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' 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-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-nccl-cu13", 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' 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-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-nvshmem-cu13", 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' 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-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "setuptools", marker = "(platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart')" }, + { name = "sympy", marker = "(platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart')" }, + { name = "triton", 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' 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-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "typing-extensions", marker = "(platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart')" }, ] wheels = [ { url = "https://files.pythonhosted.org/packages/ae/0d/98b410492609e34a155fa8b121b55c7dca229f39636851c3a9ec20edea21/torch-2.11.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:7b6a60d48062809f58595509c524b88e6ddec3ebe25833d6462eeab81e5f2ce4", size = 80529712, upload-time = "2026-03-23T18:12:02.608Z" }, @@ -14957,130 +24213,274 @@ name = "torch" version = "2.11.0+cpu" source = { registry = "https://download.pytorch.org/whl/cpu" } resolution-markers = [ - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "fsspec", version = "2024.12.0", source = { registry = "https://pypi.org/simple" }, marker = "(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') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' 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-qwen3-vllm-metal') 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' 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-qwen3-vllm-metal') 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "fsspec", version = "2026.2.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' 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-qwen3-vllm-metal') 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' 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-qwen3-vllm-metal') 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "setuptools", marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "filelock", marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "fsspec", version = "2024.12.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (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') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' 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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "fsspec", version = "2026.2.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "setuptools", marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] wheels = [ { url = "https://download-r2.pytorch.org/whl/cpu/torch-2.11.0%2Bcpu-cp311-cp311-linux_s390x.whl", hash = "sha256:5214b203ee187f8746c66f1378b72611b7c1e15c5cb325037541899e705ea24e", upload-time = "2026-04-27T21:55:40Z" }, @@ -15106,37 +24506,49 @@ name = "torch" version = "2.11.0+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' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] dependencies = [ - { name = "cuda-bindings", version = "12.9.6", 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "cuda-toolkit", version = "12.9.1", source = { registry = "https://pypi.org/simple" }, extra = ["cublas", "cudart", "cufft", "cufile", "cupti", "curand", "cusolver", "cusparse", "nvjitlink", "nvrtc", "nvtx"], 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "fsspec", version = "2024.12.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "fsspec", version = "2026.2.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "setuptools", 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "triton", 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "cuda-bindings", version = "12.9.6", 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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "cuda-toolkit", version = "12.9.1", source = { registry = "https://pypi.org/simple" }, extra = ["cublas", "cudart", "cufft", "cufile", "cupti", "curand", "cusolver", "cusparse", "nvjitlink", "nvrtc", "nvtx"], 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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "fsspec", version = "2024.12.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "fsspec", version = "2026.2.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "setuptools", 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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "triton", 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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] wheels = [ { url = "https://download-r2.pytorch.org/whl/cu129/torch-2.11.0%2Bcu129-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:ae3cf4a1082fbfbed7409dcfe9f767d9124da4730e2bb8857f1656fa490d8d69", upload-time = "2026-04-27T18:38:46Z" }, @@ -15155,12 +24567,12 @@ version = "0.12.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "julius" }, - { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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 (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "torch-pitch-shift" }, - { 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 = [ @@ -15172,8 +24584,8 @@ name = "torch-c-dlpack-ext" version = "0.1.5" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "torch", version = "2.11.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.11.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' 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 sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.11.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' 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-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.11.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' 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 sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/37/de/921b6491efce5c389a5ef9bbed3d2d6660005840dae488124173180859ab/torch_c_dlpack_ext-0.1.5.tar.gz", hash = "sha256:d06f0357d575d22a168cc77acb9020fc4bae30968ceb6718a055dcbe92bacabe", size = 12913, upload-time = "2026-01-12T11:25:08.484Z" } wheels = [ @@ -15196,14 +24608,14 @@ name = "torch-pitch-shift" version = "1.2.5" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "packaging", version = "24.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm')" }, + { name = "packaging", version = "24.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "primepy" }, - { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 = [ @@ -15220,7 +24632,7 @@ resolution-markers = [ "python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux'", ] 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-diarization-diart') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] wheels = [ { url = "https://download-r2.pytorch.org/whl/cpu/torchaudio-2.8.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c9276857d241c6de257af765c0f51fc011af38cb725401495121b280913007cf", upload-time = "2025-08-05T20:12:02Z" }, @@ -15238,59 +24650,107 @@ name = "torchaudio" version = "2.8.0" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] 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 (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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" }, @@ -15316,153 +24776,297 @@ name = "torchaudio" version = "2.8.0+cpu" source = { registry = "https://download.pytorch.org/whl/cpu" } resolution-markers = [ - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] wheels = [ { url = "https://download-r2.pytorch.org/whl/cpu/torchaudio-2.8.0%2Bcpu-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:e54bd7fc9472019308097d99102df9acee22aa2451ae808d27840bc874320292", upload-time = "2025-08-05T20:12:02Z" }, @@ -15480,243 +25084,531 @@ name = "torchaudio" version = "2.11.0" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] wheels = [ { url = "https://files.pythonhosted.org/packages/94/77/0eec7f175d88f312296bd5b11c23bd58da37c1021f53da3db4df449ce3ee/torchaudio-2.11.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:492dd64645e9d0bb843e94f1d9a4d1e31426262ffc594fafecc1697df9df5eb9", size = 684142, upload-time = "2026-03-23T18:13:36.805Z" }, @@ -15742,120 +25634,264 @@ name = "torchaudio" version = "2.11.0+cpu" source = { registry = "https://download.pytorch.org/whl/cpu" } resolution-markers = [ - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] wheels = [ { url = "https://download-r2.pytorch.org/whl/cpu/torchaudio-2.11.0%2Bcpu-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:7a5ecdd20fb26d8eb1d62135ddc6db0f806b17667c10e82df913fd509d1f5cfe", upload-time = "2026-03-23T15:50:10Z" }, @@ -15877,20 +25913,32 @@ name = "torchaudio" version = "2.11.0+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' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] wheels = [ { url = "https://download-r2.pytorch.org/whl/cu129/torchaudio-2.11.0%2Bcu129-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:74f6267dddf9a4c168027c93ef8969ff864b7c9feb6fbf9e202c3446c7d1ef75", upload-time = "2026-03-23T15:50:25Z" }, @@ -15908,17 +25956,17 @@ name = "torchmetrics" version = "1.9.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "lightning-utilities", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-diarization-diart' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') 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-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", version = "24.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm')" }, - { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.11.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (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') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') 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') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.11.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(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') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' 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-qwen3-vllm-metal') 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' 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-qwen3-vllm-metal') 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.11.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "lightning-utilities", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-diarization-diart' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "packaging", version = "24.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.11.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (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') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') 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') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.11.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (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') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' 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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.11.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129') or (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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/81/34/39b8b749333db56c0585d7a11fa62a283c087bb1dfc897d69fb8cedbefb1/torchmetrics-1.9.0.tar.gz", hash = "sha256:a488609948600df52d3db4fcdab02e62aab2a85ef34da67037dc3e65b8512faa", size = 581765, upload-time = "2026-03-09T17:41:22.443Z" } wheels = [ @@ -15935,11 +25983,11 @@ resolution-markers = [ "python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux'", ] dependencies = [ - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] wheels = [ { url = "https://download-r2.pytorch.org/whl/cpu/torchvision-0.23.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:49aa20e21f0c2bd458c71d7b449776cbd5f16693dd5807195a820612b8a229b7", upload-time = "2025-08-05T20:11:47Z" }, @@ -15957,63 +26005,111 @@ name = "torchvision" version = "0.23.0" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] dependencies = [ - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pillow", marker = "sys_platform == 'darwin' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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" }, @@ -16039,157 +26135,301 @@ name = "torchvision" version = "0.23.0+cpu" source = { registry = "https://download.pytorch.org/whl/cpu" } resolution-markers = [ - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", ] dependencies = [ - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and 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 (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and 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 (python_full_version >= '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and 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 (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and 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 (python_full_version >= '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and 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 (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and 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 (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and 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 (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and 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 (python_full_version >= '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and 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 (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and 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 (python_full_version >= '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and 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 (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and 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 (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] wheels = [ { url = "https://download-r2.pytorch.org/whl/cpu/torchvision-0.23.0%2Bcpu-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:d83d8075db43b8ca89680bdeb2f100c832e2a3aa61ee42c038b1a146e5e511b6", upload-time = "2025-08-05T20:11:47Z" }, @@ -16207,49 +26447,97 @@ name = "torchvision" version = "0.26.0" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] dependencies = [ - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "pillow", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, - { name = "torch", version = "2.11.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.11.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' 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 sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.11.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' 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-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.11.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' 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 sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] wheels = [ { url = "https://files.pythonhosted.org/packages/b4/bd/d552a2521bade3295b2c6e7a4a0d1022261cab7ca7011f4e2a330dbb3caa/torchvision-0.26.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:55bd6ad4ae77be01ba67a410b05b51f53b0d0ee45f146eb6a0dfb9007e70ab3c", size = 1863499, upload-time = "2026-03-23T18:12:58.696Z" }, @@ -16275,7 +26563,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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "colorama", marker = "sys_platform == 'win32' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 = [ @@ -16296,412 +26584,994 @@ name = "transformers" version = "4.57.6" 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] dependencies = [ - { name = "filelock", marker = "(python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", version = "24.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pyyaml", marker = "(python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "regex", marker = "(python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "requests", marker = "(python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "safetensors", marker = "(python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "tokenizers", marker = "(python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "tqdm", marker = "(python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "filelock", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "packaging", version = "24.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pyyaml", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "regex", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "requests", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "safetensors", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "tokenizers", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "tqdm", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/c4/35/67252acc1b929dc88b6602e8c4a982e64f31e733b804c14bc24b47da35e6/transformers-4.57.6.tar.gz", hash = "sha256:55e44126ece9dc0a291521b7e5492b572e6ef2766338a610b9ab5afbb70689d3", size = 10134912, upload-time = "2026-01-16T10:38:39.284Z" } wheels = [ @@ -16713,222 +27583,300 @@ name = "transformers" version = "5.8.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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 's390x' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and platform_machine != 's390x' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.13' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 's390x' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] dependencies = [ - { name = "huggingface-hub", version = "1.14.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "pyyaml", marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "regex", marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "safetensors", marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "tokenizers", marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "tqdm", marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "typer", marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, + { name = "huggingface-hub", version = "1.14.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "packaging", version = "26.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, + { name = "pyyaml", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, + { name = "regex", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, + { name = "safetensors", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, + { name = "tokenizers", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, + { name = "tqdm", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, + { name = "typer", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/e7/e6/4134ea2fbea322cddc7ffc94a0d8ee47fe32ce8e876b320cd37d88edfc4d/transformers-5.8.1.tar.gz", hash = "sha256:4dd5b6de4105725104d84fd6abd74b305f4debfc251b38c648ee5dd087cf543b", size = 8532019, upload-time = "2026-05-13T03:21:57.234Z" } wheels = [ @@ -16967,10 +27915,10 @@ name = "typer" version = "0.25.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "annotated-doc", marker = "python_full_version >= '3.13' or 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') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "click", marker = "python_full_version >= '3.13' or 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') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "rich", marker = "python_full_version >= '3.13' or 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') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "shellingham", marker = "python_full_version >= '3.13' or 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') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "annotated-doc", marker = "python_full_version >= '3.13' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "click", marker = "python_full_version >= '3.13' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "rich", marker = "python_full_version >= '3.13' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "shellingham", marker = "python_full_version >= '3.13' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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/e4/51/9aed62104cea109b820bbd6c14245af756112017d309da813ef107d42e7e/typer-0.25.1.tar.gz", hash = "sha256:9616eb8853a09ffeabab1698952f33c6f29ffdbceb4eaeecf571880e8d7664cc", size = 122276, upload-time = "2026-04-30T19:32:16.964Z" } wheels = [ @@ -17087,7 +28035,7 @@ dependencies = [ { name = "depyf", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, { name = "diskcache", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, { name = "einops", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, - { name = "fastapi", extra = ["standard"], marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "fastapi", extra = ["standard"], marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "fastsafetensors", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, { name = "filelock", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, { name = "flashinfer-cubin", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, @@ -17098,13 +28046,13 @@ dependencies = [ { name = "llguidance", marker = "(platform_machine == 'aarch64' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32') or (platform_machine == 'arm64' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32') or (platform_machine == 'ppc64le' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32') or (platform_machine == 'x86_64' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32')" }, { name = "lm-format-enforcer", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, { name = "mcp", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, - { name = "mistral-common", extra = ["image"], marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "mistral-common", extra = ["image"], marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "model-hosting-container-standards", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, { name = "msgspec", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, { name = "ninja", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, { name = "numba", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "nvidia-cudnn-frontend", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, { name = "nvidia-cutlass-dsl", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, { name = "openai", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, @@ -17119,8 +28067,8 @@ dependencies = [ { name = "pillow", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, { name = "prometheus-client", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, { name = "prometheus-fastapi-instrumentator", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, - { name = "protobuf", version = "5.29.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "protobuf", version = "6.33.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "protobuf", version = "5.29.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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 == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' 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-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "protobuf", version = "6.33.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "psutil", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, { name = "py-cpuinfo", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, { name = "pybase64", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, @@ -17138,10 +28086,10 @@ dependencies = [ { name = "tiktoken", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, { name = "tilelang", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, { name = "tokenizers", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, - { name = "torch", version = "2.11.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.11.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' 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 sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.11.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.11.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' 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 sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.11.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' 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-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.11.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' 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 sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.11.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' 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-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.11.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' 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 sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "torchvision", version = "0.26.0", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, { name = "tqdm", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, { name = "transformers", version = "4.57.6", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, @@ -17158,7 +28106,7 @@ wheels = [ [package.optional-dependencies] audio = [ { name = "av", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, - { name = "mistral-common", extra = ["audio"], marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "mistral-common", extra = ["audio"], marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "scipy", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, { name = "soundfile", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, ] @@ -17389,7 +28337,7 @@ name = "werkzeug" version = "3.1.8" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "markupsafe", marker = "(python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "markupsafe", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/dd/b2/381be8cfdee792dd117872481b6e378f85c957dd7c5bca38897b08f765fd/werkzeug-3.1.8.tar.gz", hash = "sha256:9bad61a4268dac112f1c5cd4630a56ede601b6ed420300677a869083d70a4c44", size = 875852, upload-time = "2026-04-02T18:49:14.268Z" } wheels = [ @@ -17423,77 +28371,80 @@ source = { editable = "." } dependencies = [ { name = "fastapi" }, { name = "faster-whisper" }, - { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "huggingface-hub", version = "1.14.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, + { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "huggingface-hub", version = "1.14.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, { name = "librosa" }, { name = "python-multipart" }, { name = "soundfile" }, { name = "tiktoken" }, - { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.11.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129') 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 (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart')" }, - { name = "torch", version = "2.11.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 (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.11.0+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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.11.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129') 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 (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart')" }, - { name = "torchaudio", version = "2.11.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 (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.11.0+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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.11.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart')" }, + { name = "torch", version = "2.11.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 (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.11.0+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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.11.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-diart')" }, + { name = "torchaudio", version = "2.11.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 (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.11.0+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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "tqdm" }, { name = "uvicorn" }, { name = "websockets" }, ] [package.optional-dependencies] +canary = [ + { name = "nemo-toolkit", extra = ["asr"], marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, +] cpu = [ - { 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-diarization-diart') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.11.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.11.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 (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm-metal' 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-diarization-diart') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' 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-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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 (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.11.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.11.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 (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.11.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.11.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 (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm-metal' 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-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' 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-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' 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-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' 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-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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 (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.11.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.11.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 (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] cu129 = [ - { name = "torch", version = "2.11.0", 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.11.0+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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.11.0", 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.11.0+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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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 sys_platform != 'linux2' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and sys_platform != 'linux2' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and sys_platform != 'linux2' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux2' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux2' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux2' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux2' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux2' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.11.0", 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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.11.0+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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.11.0", 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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.11.0+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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and sys_platform != 'linux2' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and sys_platform != 'linux2' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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 sys_platform != 'linux2' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and sys_platform != 'linux2' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and sys_platform != 'linux2' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux2' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux2' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux2' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux2' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux2' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux2' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux2' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] diarization-diart = [ - { name = "diart", version = "0.9.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "diart", version = "0.9.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "diart", version = "0.9.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "diart", version = "0.9.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' 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 (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' 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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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 sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] diarization-sortformer = [ - { name = "nemo-toolkit", extra = ["asr"], marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nemo-toolkit", extra = ["asr"], marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] listen = [ { name = "sounddevice" }, ] mlx-whisper = [ - { name = "mlx", marker = "(platform_machine == 'arm64' and sys_platform == 'darwin') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "mlx-whisper", marker = "(platform_machine == 'arm64' and sys_platform == 'darwin') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "mlx", marker = "(platform_machine == 'arm64' and sys_platform == 'darwin') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "mlx-whisper", marker = "(platform_machine == 'arm64' and sys_platform == 'darwin') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] qwen3-streaming = [ - { name = "qwen3-asr-causal", extra = ["streaming"], marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' 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-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "qwen3-asr-causal", extra = ["streaming"], marker = "extra == 'extra-14-whisperlivekit-qwen3-streaming' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] qwen3-vllm = [ - { name = "qwen3-asr-causal", extra = ["vllm"], marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "qwen3-asr-causal", extra = ["vllm"], marker = "extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] qwen3-vllm-metal = [ - { name = "qwen3-asr-causal", extra = ["metal"], marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "qwen3-asr-causal", extra = ["metal"], marker = "extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sentence-tokenizer = [ { name = "mosestokenizer" }, @@ -17510,13 +28461,13 @@ translation = [ ] voxtral-hf = [ { name = "accelerate", version = "1.13.0", source = { registry = "https://pypi.org/simple" } }, - { name = "mistral-common", extra = ["audio"], marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal')" }, { name = "transformers", version = "5.8.1", source = { registry = "https://pypi.org/simple" } }, ] voxtral-mlx = [ { name = "mistral-common", extra = ["audio"] }, - { name = "mlx", marker = "(platform_machine == 'arm64' and sys_platform == 'darwin') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "mlx-whisper", marker = "(platform_machine == 'arm64' and sys_platform == 'darwin') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "mlx", marker = "(platform_machine == 'arm64' and sys_platform == 'darwin') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "mlx-whisper", marker = "(platform_machine == 'arm64' and sys_platform == 'darwin') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] [package.dev-dependencies] @@ -17541,6 +28492,7 @@ requires-dist = [ { name = "mlx-whisper", marker = "platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'mlx-whisper'", specifier = ">=0.4.0" }, { name = "mlx-whisper", marker = "platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'voxtral-mlx'", specifier = ">=0.4.0" }, { name = "mosestokenizer", marker = "extra == 'sentence-tokenizer'" }, + { name = "nemo-toolkit", extras = ["asr"], marker = "python_full_version >= '3.10' and python_full_version < '3.13' and extra == 'canary'", specifier = ">=2.5.0" }, { name = "nemo-toolkit", extras = ["asr"], marker = "python_full_version >= '3.10' and python_full_version < '3.13' and extra == 'diarization-sortformer'", specifier = ">2.4" }, { name = "nllw", marker = "extra == 'translation'" }, { name = "pytest", marker = "extra == 'test'", specifier = ">=7.0" }, @@ -17575,7 +28527,7 @@ requires-dist = [ { name = "websockets" }, { name = "wtpsplit", marker = "extra == 'sentence-tokenizer'" }, ] -provides-extras = ["test", "translation", "sentence-tokenizer", "mlx-whisper", "voxtral-mlx", "voxtral-hf", "qwen3-vllm-metal", "qwen3-vllm", "qwen3-streaming", "listen", "cpu", "cu129", "diarization-sortformer", "diarization-diart"] +provides-extras = ["test", "translation", "sentence-tokenizer", "mlx-whisper", "voxtral-mlx", "voxtral-hf", "qwen3-vllm-metal", "qwen3-vllm", "qwen3-streaming", "listen", "cpu", "cu129", "diarization-sortformer", "canary", "diarization-diart"] [package.metadata.requires-dev] dev = [{ name = "rich", specifier = ">=14.3.3" }] @@ -17638,18 +28590,18 @@ name = "wtpsplit" version = "2.2.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "huggingface-hub", version = "1.14.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, + { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "huggingface-hub", version = "1.14.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, { name = "mosestokenizer" }, - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and platform_machine == 'arm64' and 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 (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and 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 (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and 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 (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' 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-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' 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-qwen3-vllm-metal') 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-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.12' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'arm64' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-canary' 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-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' 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-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm-metal') 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-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "pandas" }, { name = "scikit-learn" }, { name = "skops" }, { name = "tqdm" }, - { name = "transformers", version = "4.57.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "transformers", version = "5.8.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, + { name = "transformers", version = "4.57.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary') or (python_full_version < '3.13' and extra != 'extra-14-whisperlivekit-cu129' 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' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or extra == 'extra-14-whisperlivekit-qwen3-streaming' or extra == 'extra-14-whisperlivekit-qwen3-vllm' or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "transformers", version = "5.8.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/5a/1b/eb2f7ef0be37f9e8909005ca90366e7cb6a72ec8893467bd83fe69763dc7/wtpsplit-2.2.1.tar.gz", hash = "sha256:e72faf6df558fa45fdaa24ab2de28b7b61ad9c69900bc08041b7d479e6b9f5b7", size = 137817, upload-time = "2026-04-11T10:48:31.536Z" } wheels = [ @@ -17662,11 +28614,11 @@ version = "0.2.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "apache-tvm-ffi", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", version = "2.4.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "pydantic", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, - { name = "torch", version = "2.11.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.11.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' 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 sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.11.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' 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-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.11.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' 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 sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-diart') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-canary' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' 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-qwen3-vllm') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') 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-qwen3-streaming' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-streaming' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-qwen3-vllm-metal' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "transformers", version = "4.57.6", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, { name = "triton", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, { name = "typing-extensions", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, From 851e5a4699e914c999ecfbbac874c50460563581 Mon Sep 17 00:00:00 2001 From: wuxuedaifu Date: Sun, 19 Jul 2026 12:40:42 +0400 Subject: [PATCH 13/16] fix(canary): wire warmup guard, surface LID mapping misses, note init_prompt - core.py: run warmup_asr() in the canary branch of TranscriptionEngine._do_init so Canary gets the same startup warmup + fail-loudly-on-empty-output guard as every other LocalAgreement backend built through backend_factory. - canary_backend.py: log a warning in CanaryLID.detect() when a predicted label has no mapping into Canary's language set, instead of silently and permanently falling back to the default language. - canary_backend.py: document that CanaryASR.transcribe's init_prompt param is intentionally unused (Canary has no prompt-conditioning slot). --- whisperlivekit/canary_backend.py | 14 +++++++++++++- whisperlivekit/core.py | 2 ++ 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/whisperlivekit/canary_backend.py b/whisperlivekit/canary_backend.py index 586094dd..fef1d236 100644 --- a/whisperlivekit/canary_backend.py +++ b/whisperlivekit/canary_backend.py @@ -155,6 +155,9 @@ def __init__(self, lan="auto", canary_model="nvidia/canary-1b-v2", def transcribe(self, audio, init_prompt="", source_lang=None): """Run Canary on a 16kHz mono float32 numpy window. Returns hyp[0].""" + # init_prompt is accepted for LocalAgreement interface compatibility but + # intentionally unused: Canary (offline attention enc-dec) has no + # prompt-conditioning slot; LocalAgreement relies on the growing buffer. import numpy as np lang = source_lang or self.original_language or self.canary_default_lang @@ -227,4 +230,13 @@ def detect(self, audio) -> Tuple[Optional[str], float]: probs = logits.softmax(dim=-1) conf, idx = probs.max(dim=-1) raw_code = self.model.cfg.labels[int(idx.item())] - return map_voxlingua_to_canary(raw_code), float(conf.item()) + confidence = float(conf.item()) + mapped = map_voxlingua_to_canary(raw_code) + if mapped is None: + logger.warning( + "Canary LID predicted label %r (conf=%.2f) with no mapping into " + "Canary's supported languages; extend _VOXLINGUA_TO_CANARY. " + "Falling back to the default language.", + raw_code, confidence, + ) + return mapped, confidence diff --git a/whisperlivekit/core.py b/whisperlivekit/core.py index 462fc0c8..626de135 100644 --- a/whisperlivekit/core.py +++ b/whisperlivekit/core.py @@ -216,6 +216,8 @@ def _do_init(self, config=None, **kwargs): ) # Load the LID model so any session may request auto-detection. self.asr.lid_model = CanaryLID(lid_model=config.canary_lid_model) + from whisperlivekit.warmup import warmup_asr + warmup_asr(self.asr, config.warmup_file) logger.info("Using LocalAgreement policy with Canary backend") elif config.backend_policy == "simulstreaming": simulstreaming_params = { From 49952f1bf1ba8c4e7c88f4c1b831ea251cc1a4a5 Mon Sep 17 00:00:00 2001 From: wuxuedaifu Date: Sun, 19 Jul 2026 16:08:49 +0400 Subject: [PATCH 14/16] fix(canary): fail-soft LID load + space-prefixed tokens for readable committed text Surfaced running the live server: - LID model download failure (e.g. offline NGC) no longer aborts startup; degrade to no auto-detect and use --canary-default-lang. - Canary now emits space-prefixed word tokens with sep="" (faster-whisper convention) so committed lines assembled via Segment.from_tokens (''.join) are spaced instead of concatenated ("thequickbrown" -> "the quick brown"). --- tests/test_canary_backend.py | 3 ++- whisperlivekit/canary_backend.py | 10 ++++++++-- whisperlivekit/core.py | 13 ++++++++++++- 3 files changed, 22 insertions(+), 4 deletions(-) diff --git a/tests/test_canary_backend.py b/tests/test_canary_backend.py index 39dd2ba5..ca9e5073 100644 --- a/tests/test_canary_backend.py +++ b/tests/test_canary_backend.py @@ -46,7 +46,8 @@ def test_canary_words_to_tokens_maps_word_timestamps(): {"word": "world", "start": 0.4, "end": 0.9}, ] tokens = canary_words_to_tokens(word_stamps) - assert [t.text for t in tokens] == ["hello", "world"] + # Words are space-prefixed (faster-whisper convention, paired with sep=""). + assert [t.text for t in tokens] == [" hello", " world"] assert tokens[0].start == 0.0 and tokens[0].end == 0.4 assert tokens[1].start == 0.4 and tokens[1].end == 0.9 diff --git a/whisperlivekit/canary_backend.py b/whisperlivekit/canary_backend.py index fef1d236..6593f5d4 100644 --- a/whisperlivekit/canary_backend.py +++ b/whisperlivekit/canary_backend.py @@ -55,7 +55,11 @@ def canary_words_to_tokens(word_stamps) -> List[ASRToken]: text = w.get("word") if not text: continue - tokens.append(ASRToken(w["start"], w["end"], text)) + # Prefix each word with a space (faster-whisper convention, paired with + # sep=""). The committed-line assembly (Segment.from_tokens) joins token + # text with "".join, so the space must live on the token, not the sep; + # otherwise committed words concatenate ("thequickbrown"). + tokens.append(ASRToken(w["start"], w["end"], " " + text)) return tokens @@ -123,7 +127,9 @@ def transcribe(self, audio, init_prompt=""): class CanaryASR: """Shared Canary model holder implementing the LocalAgreement contract.""" - sep = " " + # Empty sep paired with space-prefixed word tokens (see canary_words_to_tokens), + # matching the faster-whisper convention the display/assembly paths assume. + sep = "" SAMPLING_RATE = 16000 def __init__(self, lan="auto", canary_model="nvidia/canary-1b-v2", diff --git a/whisperlivekit/core.py b/whisperlivekit/core.py index 626de135..ee6f7ec6 100644 --- a/whisperlivekit/core.py +++ b/whisperlivekit/core.py @@ -215,7 +215,18 @@ def _do_init(self, config=None, **kwargs): confidence_validation=config.confidence_validation, ) # Load the LID model so any session may request auto-detection. - self.asr.lid_model = CanaryLID(lid_model=config.canary_lid_model) + # A failure here (e.g. the LID model cannot be downloaded) must + # not stop the server from serving transcription — degrade to no + # auto-detect (sessions fall back to --canary-default-lang). + try: + self.asr.lid_model = CanaryLID(lid_model=config.canary_lid_model) + except Exception as e: + logger.warning( + "Canary LID model %r failed to load (%s); auto language " + "detection disabled, sessions use the default language.", + config.canary_lid_model, e, + ) + self.asr.lid_model = None from whisperlivekit.warmup import warmup_asr warmup_asr(self.asr, config.warmup_file) logger.info("Using LocalAgreement policy with Canary backend") From 7ecbb5a8033167566a1314272a607aa1cf86e16a Mon Sep 17 00:00:00 2001 From: wuxuedaifu Date: Sun, 19 Jul 2026 16:20:30 +0400 Subject: [PATCH 15/16] canary: add CPU-friendly smoke script; drop internal planning docs - scripts/smoke_canary.py: load the Canary backend, transcribe a 16kHz clip, print word timestamps; runs on CPU (no GPU needed). Validates the backend end-to-end without a GPU. - Remove docs/superpowers/ (internal implementation-planning notes) from the contribution so the PR carries only the backend, tests, and docs. --- .../plans/2026-07-18-canary-1b-v2-backend.md | 876 ------------------ .../2026-07-18-canary-1b-v2-backend-design.md | 247 ----- scripts/smoke_canary.py | 103 ++ 3 files changed, 103 insertions(+), 1123 deletions(-) delete mode 100644 docs/superpowers/plans/2026-07-18-canary-1b-v2-backend.md delete mode 100644 docs/superpowers/specs/2026-07-18-canary-1b-v2-backend-design.md create mode 100644 scripts/smoke_canary.py diff --git a/docs/superpowers/plans/2026-07-18-canary-1b-v2-backend.md b/docs/superpowers/plans/2026-07-18-canary-1b-v2-backend.md deleted file mode 100644 index 8d6a9dca..00000000 --- a/docs/superpowers/plans/2026-07-18-canary-1b-v2-backend.md +++ /dev/null @@ -1,876 +0,0 @@ -# Canary-1b-v2 Backend Implementation Plan - -> **For agentic workers:** REQUIRED SUB-SKILL: Use superpowers:subagent-driven-development (recommended) or superpowers:executing-plans to implement this plan task-by-task. Steps use checkbox (`- [ ]`) syntax for tracking. - -**Goal:** Add a `canary` ASR backend that runs NVIDIA `nvidia/canary-1b-v2` on the existing LocalAgreement streaming policy, with AmberNet-based detect-once-then-lock auto language detection. - -**Architecture:** A new `whisperlivekit/canary_backend.py` holds `CanaryASR` (shared NeMo `EncDecMultiTaskModel` implementing the LocalAgreement `transcribe`/`ts_words`/`segments_end_ts` contract), `CanaryLID` (shared `EncDecSpeakerLabelModel` / `langid_ambernet` language identifier), and `CanarySessionASR` (a per-session `SessionASRProxy` subclass that resolves the source language, detecting once via LID for `auto` sessions then locking it). `core.py` instantiates and routes `canary` before the `backend_policy` branch; the whole VAD→ASR→output pipeline and `OnlineASRProcessor` are reused unchanged. - -**Tech Stack:** Python, NeMo (`nemo_toolkit[asr]`, lazy-imported), PyTorch/CUDA, existing WhisperLiveKit LocalAgreement pipeline, pytest. - -**Spec:** `docs/superpowers/specs/2026-07-18-canary-1b-v2-backend-design.md` - ---- - -## File Structure - -- **Create** `whisperlivekit/canary_backend.py` — `CanaryASR`, `CanaryLID`, `CanarySessionASR`, and the pure helpers `map_voxlingua_to_canary()`, `canary_words_to_tokens()`, `canary_segment_end_ts()`. NeMo/torch imported lazily inside methods so the module imports without NeMo installed. -- **Modify** `whisperlivekit/config.py` — add `canary_*` dataclass fields. -- **Modify** `whisperlivekit/parse_args.py` — add `"canary"` to `--backend` choices and a `--canary-*` argument group. -- **Modify** `whisperlivekit/core.py` — `_do_init()` branch to build `CanaryASR` (+ attach `CanaryLID`); `online_factory()` routing to wrap in `CanarySessionASR` + `OnlineASRProcessor`. -- **Modify** `pyproject.toml` — add a `canary` optional-dependency extra. -- **Create** `tests/test_canary_backend.py` — pure-function unit tests (no model) + availability-gated integration tests. - ---- - -## Task 1: Config fields and CLI arguments - -**Files:** -- Modify: `whisperlivekit/config.py` (after the qwen3 streaming block, before `def __post_init__`, around line 150) -- Modify: `whisperlivekit/parse_args.py` (`--backend` choices at line 209; new group after the SimulStreaming group) -- Test: `tests/test_canary_backend.py` - -- [ ] **Step 1: Write the failing test** - -Create `tests/test_canary_backend.py` with: - -```python -def test_parse_args_accepts_canary_options(monkeypatch): - from whisperlivekit.parse_args import parse_args - - monkeypatch.setattr( - "sys.argv", - [ - "whisperlivekit-server", - "--backend", "canary", - "--canary-model", "nvidia/canary-1b-v2", - "--canary-default-lang", "de", - "--canary-lid-model", "langid_ambernet", - "--canary-lid-min-sec", "3.0", - "--canary-lid-min-conf", "0.6", - ], - ) - cfg = parse_args() - assert cfg.backend == "canary" - assert cfg.canary_model == "nvidia/canary-1b-v2" - assert cfg.canary_default_lang == "de" - assert cfg.canary_lid_model == "langid_ambernet" - assert cfg.canary_lid_min_sec == 3.0 - assert cfg.canary_lid_min_conf == 0.6 - - -def test_canary_config_defaults(): - from whisperlivekit.config import WhisperLiveKitConfig - - cfg = WhisperLiveKitConfig.from_kwargs(backend="canary") - assert cfg.canary_model == "nvidia/canary-1b-v2" - assert cfg.canary_default_lang == "en" - assert cfg.canary_lid_model == "langid_ambernet" - assert cfg.canary_lid_min_sec == 2.0 - assert cfg.canary_lid_min_conf == 0.5 -``` - -- [ ] **Step 2: Run test to verify it fails** - -Run: `pytest tests/test_canary_backend.py::test_canary_config_defaults tests/test_canary_backend.py::test_parse_args_accepts_canary_options -v` -Expected: FAIL — `AttributeError`/`TypeError` (unknown `canary_*` fields) and `argparse` error on `--canary-model`. - -- [ ] **Step 3: Add config fields** - -In `whisperlivekit/config.py`, immediately after the `qwen3_streaming_block_frames: int = 192` line and before `def __post_init__(self):`, add: - -```python - # Canary backend (NeMo EncDecMultiTaskModel on LocalAgreement) - canary_model: str = "nvidia/canary-1b-v2" - canary_default_lang: str = "en" - canary_lid_model: str = "langid_ambernet" - canary_lid_min_sec: float = 2.0 - canary_lid_min_conf: float = 0.5 -``` - -- [ ] **Step 4: Add the `canary` backend choice** - -In `whisperlivekit/parse_args.py`, edit the `--backend` `choices` list (line ~209) to include `"canary"`: - -```python - choices=["auto", "mlx-whisper", "faster-whisper", "whisper", "openai-api", "voxtral", "voxtral-mlx", "qwen3-vllm", "qwen3-vllm-metal", "qwen3-streaming", "canary"], -``` - -- [ ] **Step 5: Add the `--canary-*` argument group** - -In `whisperlivekit/parse_args.py`, after the SimulStreaming argument group (search for `simulstreaming_group = parser.add_argument_group`) and before the return, add: - -```python - # Canary backend arguments - canary_group = parser.add_argument_group( - "Canary backend arguments (only used with --backend canary)" - ) - canary_group.add_argument( - "--canary-model", - type=str, - default="nvidia/canary-1b-v2", - dest="canary_model", - help="Canary model: HuggingFace/NGC id or local .nemo path. Default nvidia/canary-1b-v2.", - ) - canary_group.add_argument( - "--canary-default-lang", - type=str, - default="en", - dest="canary_default_lang", - help="Fallback source language used while auto-detecting (and if detection stays low-confidence).", - ) - canary_group.add_argument( - "--canary-lid-model", - type=str, - default="langid_ambernet", - dest="canary_lid_model", - help="NeMo spoken-language-ID model used for auto detection (EncDecSpeakerLabelModel).", - ) - canary_group.add_argument( - "--canary-lid-min-sec", - type=float, - default=2.0, - dest="canary_lid_min_sec", - help="Minimum seconds of buffered audio before language detection runs.", - ) - canary_group.add_argument( - "--canary-lid-min-conf", - type=float, - default=0.5, - dest="canary_lid_min_conf", - help="Minimum LID confidence (0-1) required to lock the detected language.", - ) -``` - -- [ ] **Step 6: Run tests to verify they pass** - -Run: `pytest tests/test_canary_backend.py::test_canary_config_defaults tests/test_canary_backend.py::test_parse_args_accepts_canary_options -v` -Expected: PASS (2 passed). - -- [ ] **Step 7: Commit** - -```bash -git add whisperlivekit/config.py whisperlivekit/parse_args.py tests/test_canary_backend.py -git commit -m "feat(canary): add canary backend config fields and CLI args" -``` - ---- - -## Task 2: Pure helpers — word/segment timestamp mapping - -**Files:** -- Create: `whisperlivekit/canary_backend.py` -- Test: `tests/test_canary_backend.py` - -- [ ] **Step 1: Write the failing test** - -Append to `tests/test_canary_backend.py`: - -```python -def test_canary_words_to_tokens_maps_word_timestamps(): - from whisperlivekit.canary_backend import canary_words_to_tokens - - word_stamps = [ - {"word": "hello", "start": 0.0, "end": 0.4}, - {"word": "world", "start": 0.4, "end": 0.9}, - ] - tokens = canary_words_to_tokens(word_stamps) - assert [t.text for t in tokens] == ["hello", "world"] - assert tokens[0].start == 0.0 and tokens[0].end == 0.4 - assert tokens[1].start == 0.4 and tokens[1].end == 0.9 - - -def test_canary_words_to_tokens_handles_missing_stamps(): - from whisperlivekit.canary_backend import canary_words_to_tokens - - assert canary_words_to_tokens(None) == [] - assert canary_words_to_tokens([]) == [] - - -def test_canary_segment_end_ts(): - from whisperlivekit.canary_backend import canary_segment_end_ts - - seg_stamps = [ - {"segment": "hello world.", "start": 0.0, "end": 0.9}, - {"segment": "bye.", "start": 1.0, "end": 1.5}, - ] - assert canary_segment_end_ts(seg_stamps) == [0.9, 1.5] - assert canary_segment_end_ts(None) == [] -``` - -- [ ] **Step 2: Run test to verify it fails** - -Run: `pytest tests/test_canary_backend.py -k "words_to_tokens or segment_end_ts" -v` -Expected: FAIL — `ModuleNotFoundError: whisperlivekit.canary_backend`. - -- [ ] **Step 3: Create the module with the pure helpers** - -Create `whisperlivekit/canary_backend.py`: - -```python -"""NVIDIA Canary-1b-v2 backend for WhisperLiveKit (LocalAgreement policy). - -Contains: - - CanaryASR: shared NeMo EncDecMultiTaskModel implementing the LocalAgreement - transcribe()/ts_words()/segments_end_ts() contract. - - CanaryLID: shared NeMo language-ID model (langid_ambernet). - - CanarySessionASR: per-session proxy that resolves the source language, - auto-detecting once via CanaryLID for ``auto`` sessions then locking it. - -NeMo and torch are imported lazily inside methods so this module imports fine -on machines without ``nemo_toolkit`` installed (routing/unit tests, non-canary -deployments). -""" - -import logging -from typing import List, Optional, Tuple - -from whisperlivekit.session_asr_proxy import SessionASRProxy -from whisperlivekit.timed_objects import ASRToken - -logger = logging.getLogger(__name__) - - -# Canary-1b-v2's 25 supported source-language codes. -CANARY_LANGS = { - "bg", "hr", "cs", "da", "nl", "en", "et", "fi", "fr", "de", "el", "hu", - "it", "lv", "lt", "mt", "pl", "pt", "ro", "ru", "sk", "sl", "es", "sv", "uk", -} - -# VoxLingua107 (AmberNet) codes that differ from Canary's expected code. -# VoxLingua107 is mostly ISO 639-1 already, so the map is small; extend after -# validating against the actual langid_ambernet label set. -_VOXLINGUA_TO_CANARY = { - # placeholder for known mismatches, e.g. "gr": "el" -} - - -def map_voxlingua_to_canary(code: str) -> Optional[str]: - """Map an AmberNet/VoxLingua107 language code to Canary's source_lang set. - - Returns the mapped code if Canary supports it, else None. - """ - if not code: - return None - code = _VOXLINGUA_TO_CANARY.get(code, code) - return code if code in CANARY_LANGS else None - - -def canary_words_to_tokens(word_stamps) -> List[ASRToken]: - """Convert Canary ``timestamp['word']`` entries to ASRToken objects.""" - if not word_stamps: - return [] - tokens: List[ASRToken] = [] - for w in word_stamps: - text = w.get("word") - if not text: - continue - tokens.append(ASRToken(w["start"], w["end"], text)) - return tokens - - -def canary_segment_end_ts(segment_stamps) -> List[float]: - """Extract segment end times from Canary ``timestamp['segment']`` entries.""" - if not segment_stamps: - return [] - return [s["end"] for s in segment_stamps] -``` - -- [ ] **Step 4: Run tests to verify they pass** - -Run: `pytest tests/test_canary_backend.py -k "words_to_tokens or segment_end_ts" -v` -Expected: PASS (3 passed). - -- [ ] **Step 5: Commit** - -```bash -git add whisperlivekit/canary_backend.py tests/test_canary_backend.py -git commit -m "feat(canary): pure word/segment timestamp mapping helpers" -``` - ---- - -## Task 3: Language-code mapping helper - -**Files:** -- Modify: `whisperlivekit/canary_backend.py` (helper already added in Task 2) -- Test: `tests/test_canary_backend.py` - -- [ ] **Step 1: Write the failing test** - -Append to `tests/test_canary_backend.py`: - -```python -def test_map_voxlingua_to_canary_supported(): - from whisperlivekit.canary_backend import map_voxlingua_to_canary - - assert map_voxlingua_to_canary("en") == "en" - assert map_voxlingua_to_canary("de") == "de" - assert map_voxlingua_to_canary("uk") == "uk" - - -def test_map_voxlingua_to_canary_unsupported_returns_none(): - from whisperlivekit.canary_backend import map_voxlingua_to_canary - - assert map_voxlingua_to_canary("zh") is None # Chinese not in Canary's 25 - assert map_voxlingua_to_canary("") is None - assert map_voxlingua_to_canary(None) is None -``` - -- [ ] **Step 2: Run tests to verify they pass** - -Run: `pytest tests/test_canary_backend.py -k "map_voxlingua" -v` -Expected: PASS (2 passed) — the helper was added in Task 2; these lock its contract. - -- [ ] **Step 3: Commit** - -```bash -git add tests/test_canary_backend.py -git commit -m "test(canary): lock voxlingua->canary code mapping contract" -``` - ---- - -## Task 4: `CanarySessionASR` auto-detect wrapper - -**Files:** -- Modify: `whisperlivekit/canary_backend.py` -- Test: `tests/test_canary_backend.py` - -This task tests control-flow (language resolution / detect-once-then-lock) with -tiny deterministic stubs — not the ASR pipeline. Real end-to-end coverage is -Task 7. - -- [ ] **Step 1: Write the failing test** - -Append to `tests/test_canary_backend.py`: - -```python -import numpy as np - - -class _RecordingCanaryASR: - """Minimal stand-in for CanaryASR that records the source language used.""" - sep = " " - - def __init__(self): - self.original_language = None - self.calls = [] - - def transcribe(self, audio, init_prompt=""): - self.calls.append(self.original_language) - return f"decoded:{self.original_language}" - - -class _StubLID: - def __init__(self, code="de", conf=0.9): - self._code, self._conf = code, conf - self.n_calls = 0 - - def detect(self, audio): - self.n_calls += 1 - return self._code, self._conf - - -def _audio(seconds): - return np.zeros(int(seconds * 16000), dtype=np.float32) - - -def test_explicit_language_bypasses_lid(): - from whisperlivekit.canary_backend import CanarySessionASR - - asr = _RecordingCanaryASR() - lid = _StubLID() - session = CanarySessionASR(asr, "fr", lid=lid, default_lang="en", - lid_min_sec=2.0, lid_min_conf=0.5) - session.transcribe(_audio(5)) - assert asr.calls == ["fr"] - assert lid.n_calls == 0 - - -def test_auto_uses_default_until_enough_audio(): - from whisperlivekit.canary_backend import CanarySessionASR - - asr = _RecordingCanaryASR() - lid = _StubLID(code="de", conf=0.9) - session = CanarySessionASR(asr, "auto", lid=lid, default_lang="en", - lid_min_sec=2.0, lid_min_conf=0.5) - session.transcribe(_audio(1.0)) # below lid_min_sec -> default, no LID - assert asr.calls == ["en"] - assert lid.n_calls == 0 - - -def test_auto_detects_once_then_locks(): - from whisperlivekit.canary_backend import CanarySessionASR - - asr = _RecordingCanaryASR() - lid = _StubLID(code="de", conf=0.9) - session = CanarySessionASR(asr, "auto", lid=lid, default_lang="en", - lid_min_sec=2.0, lid_min_conf=0.5) - session.transcribe(_audio(3.0)) # detects -> "de" - session.transcribe(_audio(4.0)) # locked -> "de", no second detect - assert asr.calls == ["de", "de"] - assert lid.n_calls == 1 - - -def test_auto_low_confidence_stays_on_default(): - from whisperlivekit.canary_backend import CanarySessionASR - - asr = _RecordingCanaryASR() - lid = _StubLID(code="de", conf=0.2) # below lid_min_conf - session = CanarySessionASR(asr, "auto", lid=lid, default_lang="en", - lid_min_sec=2.0, lid_min_conf=0.5) - session.transcribe(_audio(3.0)) - assert asr.calls == ["en"] # not locked, retried later -``` - -- [ ] **Step 2: Run tests to verify they fail** - -Run: `pytest tests/test_canary_backend.py -k "CanarySession or explicit_language or auto_" -v` -Expected: FAIL — `ImportError: cannot import name 'CanarySessionASR'`. - -- [ ] **Step 3: Implement `CanarySessionASR`** - -Append to `whisperlivekit/canary_backend.py`: - -```python -class CanarySessionASR(SessionASRProxy): - """Per-session Canary proxy with auto language detection. - - For explicit-language sessions this behaves like SessionASRProxy, forcing - ``source_lang`` to the chosen code. For ``auto`` sessions it uses - ``default_lang`` until ``lid_min_sec`` of audio is buffered, then runs the - shared LID once; on a confident result it locks that language for the rest - of the session. - """ - - SAMPLING_RATE = 16000 - - def __init__(self, asr, language, lid=None, default_lang="en", - lid_min_sec=2.0, lid_min_conf=0.5): - super().__init__(asr, language) - is_auto = (language is None) or (language == "auto") - object.__setattr__(self, "_is_auto", is_auto) - object.__setattr__(self, "_lid", lid) - object.__setattr__(self, "_default_lang", default_lang) - object.__setattr__(self, "_lid_min_sec", lid_min_sec) - object.__setattr__(self, "_lid_min_conf", lid_min_conf) - object.__setattr__(self, "_detected_lang", None) - - def _resolve_language(self, audio) -> str: - # Explicit language: SessionASRProxy stored it as _session_language. - if not self._is_auto: - return self._session_language - if self._detected_lang is not None: - return self._detected_lang - if self._lid is not None and len(audio) >= self._lid_min_sec * self.SAMPLING_RATE: - try: - code, conf = self._lid.detect(audio) - except Exception as e: # noqa: BLE001 - logger.warning("Canary LID failed: %s", e) - code, conf = None, 0.0 - if code is not None and conf >= self._lid_min_conf: - object.__setattr__(self, "_detected_lang", code) - logger.info("Canary auto-detected language: %s (conf=%.2f)", code, conf) - return code - return self._default_lang - - def transcribe(self, audio, init_prompt=""): - with self._lock: - lang = self._resolve_language(audio) - saved = self._asr.original_language - self._asr.original_language = lang - try: - return self._asr.transcribe(audio, init_prompt=init_prompt) - finally: - self._asr.original_language = saved -``` - -- [ ] **Step 4: Run tests to verify they pass** - -Run: `pytest tests/test_canary_backend.py -k "CanarySession or explicit_language or auto_" -v` -Expected: PASS (4 passed). - -- [ ] **Step 5: Commit** - -```bash -git add whisperlivekit/canary_backend.py tests/test_canary_backend.py -git commit -m "feat(canary): CanarySessionASR detect-once-then-lock auto language" -``` - ---- - -## Task 5: `CanaryASR` and `CanaryLID` model classes - -**Files:** -- Modify: `whisperlivekit/canary_backend.py` -- Test: `tests/test_canary_backend.py` (availability-gated integration test) - -- [ ] **Step 1: Write the failing (gated) integration test** - -Append to `tests/test_canary_backend.py`: - -```python -import importlib.util - -import pytest - -_NEMO_AVAILABLE = importlib.util.find_spec("nemo") is not None -requires_nemo = pytest.mark.skipif(not _NEMO_AVAILABLE, reason="NeMo not installed") - - -@requires_nemo -def test_canary_asr_transcribes_with_word_timestamps(): - from whisperlivekit.canary_backend import CanaryASR - from whisperlivekit.test_data import load_test_audio # 16kHz mono float32 + text - - asr = CanaryASR( - lan="en", - canary_model="nvidia/canary-1b-v2", - buffer_trimming="segment", - buffer_trimming_sec=15.0, - confidence_validation=False, - ) - audio, _reference = load_test_audio() - res = asr.transcribe(audio, source_lang="en") - tokens = asr.ts_words(res) - assert tokens, "expected at least one word token" - assert all(t.end >= t.start for t in tokens) - ends = asr.segments_end_ts(res) - assert ends and ends[-1] > 0 -``` - -Note: adapt `load_test_audio` to whatever `tests/` or `whisperlivekit/test_data.py` -exposes (see `test_pipeline.py` for the existing audio-loading helper); the point -is a real 16 kHz numpy clip. - -- [ ] **Step 2: Run test to verify it fails or skips** - -Run: `pytest tests/test_canary_backend.py::test_canary_asr_transcribes_with_word_timestamps -v` -Expected (no NeMo): SKIPPED. Expected (NeMo present, class missing): FAIL — `ImportError: cannot import name 'CanaryASR'`. - -- [ ] **Step 3: Implement `CanaryASR`** - -Append to `whisperlivekit/canary_backend.py`: - -```python -class CanaryASR: - """Shared Canary model holder implementing the LocalAgreement contract.""" - - sep = " " - SAMPLING_RATE = 16000 - - def __init__(self, lan="auto", canary_model="nvidia/canary-1b-v2", - buffer_trimming="segment", buffer_trimming_sec=15.0, - confidence_validation=False, canary_default_lang="en", - logfile=None, **_unused): - import time - - self.original_language = None if lan == "auto" else lan - self.canary_default_lang = canary_default_lang - self.backend_choice = "canary" - self.confidence_validation = confidence_validation - self.tokenizer = None # segment trimming needs no sentence tokenizer - self.buffer_trimming = buffer_trimming - self.buffer_trimming_sec = buffer_trimming_sec - self.transcribe_kargs = {} - self.lid_model = None # attached by core.py when auto detection is enabled - - from nemo.collections.asr.models import ASRModel - - t = time.time() - logger.info("Loading Canary model '%s' via NeMo...", canary_model) - if canary_model.endswith(".nemo"): - self.model = ASRModel.restore_from(canary_model) - else: - self.model = ASRModel.from_pretrained(model_name=canary_model) - self.model.eval() - logger.info("Canary model loaded in %.2fs", time.time() - t) - - def transcribe(self, audio, init_prompt="", source_lang=None): - """Run Canary on a 16kHz mono float32 numpy window. Returns hyp[0].""" - import numpy as np - - lang = source_lang or self.original_language or self.canary_default_lang - audio = np.asarray(audio, dtype=np.float32) - outputs = self.model.transcribe( - [audio], - source_lang=lang, - target_lang=lang, - timestamps=True, - batch_size=1, - verbose=False, - ) - return outputs[0] - - def _word_stamps(self, res): - ts = getattr(res, "timestamp", None) or {} - return ts.get("word") - - def _segment_stamps(self, res): - ts = getattr(res, "timestamp", None) or {} - return ts.get("segment") - - def ts_words(self, res) -> List[ASRToken]: - return canary_words_to_tokens(self._word_stamps(res)) - - def segments_end_ts(self, res) -> List[float]: - return canary_segment_end_ts(self._segment_stamps(res)) - - def use_vad(self): - logger.warning("VAD is handled upstream (Silero); CanaryASR.use_vad() is a no-op.") -``` - -- [ ] **Step 4: Implement `CanaryLID`** - -Append to `whisperlivekit/canary_backend.py`: - -```python -class CanaryLID: - """Shared spoken-language-ID model (NeMo langid_ambernet / AmberNet).""" - - SAMPLING_RATE = 16000 - - def __init__(self, lid_model="langid_ambernet", logfile=None, **_unused): - import time - - import nemo.collections.asr as nemo_asr - - t = time.time() - logger.info("Loading Canary LID model '%s' via NeMo...", lid_model) - self.model = nemo_asr.models.EncDecSpeakerLabelModel.from_pretrained( - model_name=lid_model - ) - self.model.eval() - try: - self.device = next(self.model.parameters()).device - except StopIteration: # pragma: no cover - self.device = "cpu" - logger.info("Canary LID model loaded in %.2fs", time.time() - t) - - def detect(self, audio) -> Tuple[Optional[str], float]: - """Return (canary_lang_code_or_None, confidence) for a 16kHz clip.""" - import numpy as np - import torch - - arr = np.asarray(audio, dtype=np.float32) - sig = torch.tensor(arr).unsqueeze(0).to(self.device) - sig_len = torch.tensor([sig.shape[1]]).to(self.device) - with torch.no_grad(): - logits, _ = self.model.forward(input_signal=sig, input_signal_length=sig_len) - probs = logits.softmax(dim=-1) - conf, idx = probs.max(dim=-1) - raw_code = self.model.cfg.labels[int(idx.item())] - return map_voxlingua_to_canary(raw_code), float(conf.item()) -``` - -- [ ] **Step 5: Run the gated test** - -Run: `pytest tests/test_canary_backend.py::test_canary_asr_transcribes_with_word_timestamps -v` -Expected (no NeMo): SKIPPED. Expected (NeMo + weights): PASS. - -- [ ] **Step 6: Verify the module still imports without NeMo** - -Run: `python -c "import whisperlivekit.canary_backend; print('ok')"` -Expected: `ok` (no NeMo import at module load — it is inside `__init__`/`detect`). - -- [ ] **Step 7: Commit** - -```bash -git add whisperlivekit/canary_backend.py tests/test_canary_backend.py -git commit -m "feat(canary): CanaryASR and CanaryLID NeMo model classes" -``` - ---- - -## Task 6: Wire `canary` into `core.py` (build + routing) - -**Files:** -- Modify: `whisperlivekit/core.py` (`_do_init()` around line 196–205; `online_factory()` around line 307–332) -- Test: `tests/test_canary_backend.py` - -- [ ] **Step 1: Write the failing routing test (no NeMo needed)** - -Append to `tests/test_canary_backend.py`: - -```python -from argparse import Namespace - - -class _FakeCanaryASR: - """Stands in for a loaded CanaryASR so online_factory needs no NeMo.""" - sep = " " - - def __init__(self): - self.original_language = None - self.lid_model = _StubLID() - self.canary_default_lang = "en" - self.confidence_validation = False - self.tokenizer = None - self.buffer_trimming = "segment" - self.buffer_trimming_sec = 15.0 - - def transcribe(self, audio, init_prompt=""): - return "x" - - -def test_online_factory_routes_canary_to_localagreement(): - from whisperlivekit.canary_backend import CanarySessionASR - from whisperlivekit.core import online_factory - from whisperlivekit.local_agreement.online_asr import OnlineASRProcessor - - args = Namespace( - backend="canary", backend_policy="simulstreaming", lan="auto", - canary_default_lang="en", canary_lid_min_sec=2.0, canary_lid_min_conf=0.5, - ) - asr = _FakeCanaryASR() - processor = online_factory(args, asr, language="auto") - assert isinstance(processor, OnlineASRProcessor) - assert isinstance(processor.asr, CanarySessionASR) -``` - -- [ ] **Step 2: Run test to verify it fails** - -Run: `pytest tests/test_canary_backend.py::test_online_factory_routes_canary_to_localagreement -v` -Expected: FAIL — canary falls through to the SimulStreaming branch (`backend_policy == "simulstreaming"`), so `processor` is a `SimulStreamingOnlineProcessor`, not `OnlineASRProcessor` wrapping `CanarySessionASR`. - -- [ ] **Step 3: Add the `_do_init()` build branch** - -In `whisperlivekit/core.py`, inside `_do_init()`, add this branch alongside the other explicit-backend branches — after the `elif config.backend == "voxtral":` block and before `elif config.backend_policy == "simulstreaming":`: - -```python - elif config.backend == "canary": - from whisperlivekit.canary_backend import CanaryASR, CanaryLID - self.tokenizer = None - self.asr = CanaryASR( - lan=config.lan, - canary_model=config.canary_model, - canary_default_lang=config.canary_default_lang, - buffer_trimming=config.buffer_trimming, - buffer_trimming_sec=config.buffer_trimming_sec, - confidence_validation=config.confidence_validation, - ) - # Load the LID model so any session may request auto-detection. - self.asr.lid_model = CanaryLID(lid_model=config.canary_lid_model) - logger.info("Using LocalAgreement policy with Canary backend") -``` - -- [ ] **Step 4: Add the `online_factory()` routing branch** - -In `whisperlivekit/core.py`, inside `online_factory()`, add this **before** the existing `if language is not None:` proxy-wrap block near the top of the function: - -```python - backend = getattr(args, 'backend', None) - if backend == "canary": - from whisperlivekit.canary_backend import CanarySessionASR - effective = language if language is not None else getattr(args, 'lan', 'auto') - wrapped = CanarySessionASR( - asr, - effective, - lid=getattr(asr, 'lid_model', None), - default_lang=getattr(args, 'canary_default_lang', 'en'), - lid_min_sec=getattr(args, 'canary_lid_min_sec', 2.0), - lid_min_conf=getattr(args, 'canary_lid_min_conf', 0.5), - ) - return OnlineASRProcessor(wrapped) -``` - -Note: `OnlineASRProcessor` is already imported at the top of `core.py` (line 7). The existing `backend = getattr(args, 'backend', None)` line later in the function becomes redundant; leave the later per-backend `if` checks as-is (this early return handles canary first). - -- [ ] **Step 5: Run test to verify it passes** - -Run: `pytest tests/test_canary_backend.py::test_online_factory_routes_canary_to_localagreement -v` -Expected: PASS. - -- [ ] **Step 6: Run the full canary test file** - -Run: `pytest tests/test_canary_backend.py -v` -Expected: PASS (integration test SKIPPED if NeMo absent; all others pass). - -- [ ] **Step 7: Commit** - -```bash -git add whisperlivekit/core.py tests/test_canary_backend.py -git commit -m "feat(canary): route canary backend to LocalAgreement in core" -``` - ---- - -## Task 7: Optional dependency extra, end-to-end test, and docs - -**Files:** -- Modify: `pyproject.toml` (`[project.optional-dependencies]` around line 38) -- Modify: `README.md` (backend list / usage section) -- Test: `tests/test_canary_backend.py` (gated end-to-end via `TestHarness`) - -- [ ] **Step 1: Add the `canary` optional extra** - -In `pyproject.toml` under `[project.optional-dependencies]`, add: - -```toml -canary = ["nemo_toolkit[asr]>=2.5.0"] -``` - -(If 2.5 is not yet released at implementation time, pin the known-good main-branch -install per the spec's NeMo-version risk note and document it in the README.) - -- [ ] **Step 2: Write the failing (gated) end-to-end test** - -Append to `tests/test_canary_backend.py`: - -```python -@requires_nemo -def test_canary_end_to_end_via_testharness(): - import asyncio - - from whisperlivekit import TestHarness - - async def _run(): - async with TestHarness(backend="canary", lan="en") as h: - await h.feed("audio.wav", speed=1.0) # replace with a real fixture path - await h.drain(3.0) - result = await h.finish() - assert result.text.strip(), "expected non-empty transcription" - - asyncio.run(_run()) -``` - -Note: use whatever real audio fixture the existing suite uses (see `test_pipeline.py` -/ `whisperlivekit/test_data.py`). `TestHarness` calls `TranscriptionEngine.reset()` -internally to switch backends — confirm against the harness API before finalizing. - -- [ ] **Step 3: Run the end-to-end test** - -Run: `pytest tests/test_canary_backend.py::test_canary_end_to_end_via_testharness -v` -Expected (no NeMo): SKIPPED. Expected (NeMo + CUDA + weights): PASS. - -- [ ] **Step 4: Document the backend in the README** - -Add `canary` to the backend list/table in `README.md` with a short usage note: - -```markdown -- **canary** — NVIDIA Canary-1b-v2 (NeMo, CUDA). 25 European languages, native - word timestamps, LocalAgreement streaming, auto language detection via AmberNet. - Install: `pip install -e ".[canary]"`. Run: `wlk --backend canary --language auto`. -``` - -- [ ] **Step 5: Run the full suite for regressions** - -Run: `pytest tests/ -v` -Expected: PASS (no regressions; canary integration tests SKIPPED without NeMo). - -- [ ] **Step 6: Commit** - -```bash -git add pyproject.toml README.md tests/test_canary_backend.py -git commit -m "feat(canary): optional extra, end-to-end test, and docs" -``` - ---- - -## Self-Review Notes - -- **Spec coverage:** backend + LocalAgreement routing (Tasks 5–6), native word/segment timestamps (Tasks 2, 5), explicit per-session language via proxy (Task 4), AmberNet detect-once-then-lock auto (Tasks 3–5), config/CLI surface (Task 1), optional dependency + lazy import (Tasks 2, 7), testing incl. gated E2E (Tasks 5, 7). Non-goals (AST translation, `canary-streaming`, re-detection) intentionally excluded. -- **Naming consistency:** helpers `canary_words_to_tokens` / `canary_segment_end_ts` / `map_voxlingua_to_canary`, classes `CanaryASR` / `CanaryLID` / `CanarySessionASR`, attribute `asr.lid_model`, config `canary_model` / `canary_default_lang` / `canary_lid_model` / `canary_lid_min_sec` / `canary_lid_min_conf` — used identically across tasks. -- **Known risks to validate during implementation** (from spec): exact NeMo timestamp-object shape (`res.timestamp['word']` vs a Hypothesis attribute), NeMo version for timestamps, `langid_ambernet` label codes vs `_VOXLINGUA_TO_CANARY` map, whether Canary exposes any prompt-conditioning (currently `init_prompt` accepted and ignored), and the real audio-fixture / `TestHarness.reset` API used by the existing suite. -``` diff --git a/docs/superpowers/specs/2026-07-18-canary-1b-v2-backend-design.md b/docs/superpowers/specs/2026-07-18-canary-1b-v2-backend-design.md deleted file mode 100644 index f5d38244..00000000 --- a/docs/superpowers/specs/2026-07-18-canary-1b-v2-backend-design.md +++ /dev/null @@ -1,247 +0,0 @@ -# Design: NVIDIA Canary-1b-v2 backend for WhisperLiveKit - -**Date:** 2026-07-18 -**Status:** Approved (Phase 1) -**Author:** brainstorming session - -## Summary - -Add support for NVIDIA's `nvidia/canary-1b-v2` speech model as a new ASR backend -in WhisperLiveKit, driven by the existing **LocalAgreement** streaming policy. -Phase 1 delivers a working `canary` backend with multilingual auto language -detection. Phase 2 (a separate, later spec) will add a lower-latency -`canary-streaming` backend built on NeMo's native AlignAtt decoder. - -## Background - -### The model - -Canary-1b-v2 (paper: arXiv 2509.14128; card: huggingface.co/nvidia/canary-1b-v2) -is a **978M-parameter attention encoder-decoder (AED)** model: - -- **Encoder:** FastConformer, 32 layers. -- **Decoder:** Transformer, 8 layers, autoregressive. -- **Tokenizer:** unified SentencePiece, 16,384 tokens. -- **Languages:** 25 European languages (Bulgarian, Croatian, Czech, Danish, - Dutch, English, Estonian, Finnish, French, German, Greek, Hungarian, Italian, - Latvian, Lithuanian, Maltese, Polish, Portuguese, Romanian, Russian, Slovak, - Slovenian, Spanish, Swedish, Ukrainian). -- **Tasks:** ASR and AST (translation), selected purely via `source_lang` / - `target_lang` kwargs (same lang = ASR, different = translation). -- **Timestamps:** native word-level and segment-level via - `model.transcribe(..., timestamps=True)`. -- **Streaming:** the base model is **offline/full-utterance**. `source_lang` is - **mandatory** — there is no native auto-detect mode. - -### NeMo API (verified) - -```python -from nemo.collections.asr.models import ASRModel # resolves to EncDecMultiTaskModel -asr_model = ASRModel.from_pretrained(model_name="nvidia/canary-1b-v2") - -# audio may be a list of file paths OR a list of 16kHz mono float32 numpy arrays -output = asr_model.transcribe( - [audio_np], # 16 kHz mono float32 - source_lang="en", - target_lang="en", - timestamps=True, -) -hyp = output[0] -hyp.text # full text -hyp.timestamp["word"] # [{'word': str, 'start': float, 'end': float}, ...] -hyp.timestamp["segment"] # [{'segment': str, 'start': float, 'end': float}, ...] -``` - -Package: `nemo_toolkit[asr]`. Timestamp support needs a recent NeMo -(main / >= 2.5). Runs on CUDA (target here), CPU (slow), and MPS (partial). - -### Why LocalAgreement fits - -The framework's `OnlineASRProcessor` (`local_agreement/online_asr.py`) already -turns an **offline** `transcribe()` into a streaming experience: it accumulates a -growing audio window, re-transcribes it each tick, and commits words via the -`HypothesisBuffer` LocalAgreement policy (confirm a word when consecutive -inferences agree). This is exactly how the Whisper backends are driven. Canary -returns native per-word timestamps, so it satisfies the -`transcribe()` / `ts_words()` / `segments_end_ts()` contract with no timestamp -reconstruction. This is the lowest-risk path and reuses the entire -VAD → ASR → output pipeline unchanged. - -The alternative — NeMo's native AlignAtt streaming decoder wired onto the -SimulStreaming policy — is much lower latency but tightly coupled to NeMo -streaming internals and far more complex. It is deferred to Phase 2. - -## Goals (Phase 1) - -- New `--backend canary` selectable backend, running on CUDA. -- Real-time streaming transcription via the existing LocalAgreement policy. -- Native word-level timestamps feeding the existing UI / diarization alignment. -- Per-session explicit language selection (25 languages) via the existing - `SessionASRProxy` seam. -- Multilingual **auto** language detection (`lan=auto`) via a lightweight - NeMo LID front-step (AmberNet), detect-once-then-lock per session. -- Diarization and the existing NLLB/AlignAtt translation engines continue to - compose unchanged. - -## Non-goals (Phase 1) - -- Canary's built-in direct translation (AST) as a translation backend — possible - later add-on; word timestamps are unreliable for AST (segment-level only). -- NeMo native AlignAtt streaming (`canary-streaming`) — Phase 2, separate spec. -- Apple Silicon / CPU optimization — device-agnostic code, but CUDA is the - supported/target path. -- Re-detection of language mid-session after the initial lock. - -## Architecture - -### New file: `whisperlivekit/canary_backend.py` - -Lazy-imports NeMo (so non-Canary users never load it). Contains two classes. - -#### `CanaryASR` — shared model holder + LocalAgreement contract - -Loaded once by the `TranscriptionEngine` singleton. - -Required attributes (mirroring `ASRBase` consumers in `online_asr.py`): -`sep=" "`, `original_language`, `backend_choice="canary"`, -`confidence_validation`, `tokenizer`, `buffer_trimming`, `buffer_trimming_sec`. - -Methods: - -- `load_model(...)` — `ASRModel.from_pretrained("nvidia/canary-1b-v2")` (or a - local path / alternate Canary model from `--canary-model`), moved to CUDA. -- `transcribe(audio, init_prompt="", source_lang=None)` — resolves the effective - source language (`source_lang` arg > `self.original_language` > default), - calls `model.transcribe([audio], source_lang=L, target_lang=L, - timestamps=True)`, returns the hypothesis object. `init_prompt` is accepted for - interface compatibility (Canary has no direct prompt slot — passed through only - if a supported mechanism exists, otherwise ignored). -- `ts_words(res)` — map `res.timestamp["word"]` `{word,start,end}` → `ASRToken`. -- `segments_end_ts(res)` — end times from `res.timestamp["segment"]`. -- `use_vad()` — no-op / warning (VAD handled upstream by Silero). - -#### `CanaryLID` — shared language-ID model - -Loaded once (only when any session may need `auto`). - -- `load_model(...)` — `EncDecSpeakerLabelModel.from_pretrained("langid_ambernet")`, - moved to CUDA. ~29M params / ~110 MB; VoxLingua107 (107 langs) — a superset of - Canary's 25. -- `detect(audio_np) -> (lang_code, confidence)` — run `forward()` on the 16 kHz - array, softmax, argmax → VoxLingua107 code, then map to Canary's accepted - `source_lang` set via a small code map (validate edge cases e.g. `el`, `uk`, - `mt`). Returns the mapped code and the max probability. - -### `core.py` changes - -- In `TranscriptionEngine._do_init()`, add an - `elif config.backend == "canary":` branch **before** the `backend_policy` - check (placed with the `voxtral` / `qwen3` branches). Instantiate `CanaryASR`; - instantiate `CanaryLID` when `config.lan == "auto"`. Stash the LID instance on - the engine so `online_factory()` can reach it. -- In `online_factory()`, add `if backend == "canary": ...` returning an - `OnlineASRProcessor` wrapping the (possibly proxied) ASR — routed **before** - the `backend_policy == "simulstreaming"` branch so it works regardless of the - default policy. - -### Auto language detection - -Constraint: `CanaryASR` and `CanaryLID` are shared singletons, but the detected -language is per-session. The existing `SessionASRProxy` is the per-session seam -(wraps `transcribe()` under a lock, overrides the language). - -**Mechanism (`lan == "auto"` sessions only):** - -1. Introduce `CanarySessionASR`, a subclass of `SessionASRProxy` (or a thin - wrapper) that holds a reference to the shared `CanaryLID` and a per-session - `detected_lang` (initially unset). -2. Until `detected_lang` is set, `transcribe()` uses a configurable fallback - `--canary-default-lang` (default `en`) as `source_lang`, so the first partial - window still produces output. -3. On the first window with committed audio duration `>= --canary-lid-min-sec` - (default `2.0`), call `CanaryLID.detect(window)` once. If confidence - `>= --canary-lid-min-conf` (default `0.5`), cache and lock `detected_lang` - for the rest of the session. Otherwise keep the fallback and retry on the next - window, up to a bounded number of attempts, then stay on the fallback. -4. Explicit-language sessions (e.g. `?lang=de`) bypass all of this via the normal - proxy path — no LID model touched. - -This keeps LID concerns out of both the shared `CanaryASR` and the generic -`SessionASRProxy`. Detect-once-and-lock; no mid-session re-detection in Phase 1. - -### Data flow (unchanged pipeline) - -``` -FFmpeg decode → Silero VAD → OnlineASRProcessor (growing window) - → [CanarySessionASR / SessionASRProxy] → CanaryASR.transcribe() on CUDA - → ts_words() → HypothesisBuffer LocalAgreement commit → stream to client -``` - -Diarization (sortformer/diart) and translation (NLLB / AlignAtt) engines are -untouched and compose exactly as today. - -## Configuration & dependencies - -### CLI / config additions (`parse_args.py`, `config.py`) - -- `--backend canary` — add `"canary"` to the `--backend` choices. -- `--canary-model` (default `nvidia/canary-1b-v2`) — HF repo id or local path. -- `--canary-default-lang` (default `en`) — fallback while auto-detecting. -- `--canary-lid-model` (default `langid_ambernet`). -- `--canary-lid-min-sec` (default `2.0`) — min committed audio before LID runs. -- `--canary-lid-min-conf` (default `0.5`) — min LID confidence to lock. -- Reuse existing `buffer_trimming` / `buffer_trimming_sec` (already default - `segment` / `15.0`, which suits Canary's long-window tolerance). - -Add the corresponding fields to `WhisperLiveKitConfig` and thread them through -`transcription_common_params` (or a `canary_params` dict, matching the pattern -used for `qwen3_streaming_params` / `voxtral`). - -### Dependencies - -- `nemo_toolkit[asr]` (heavy: PyTorch Lightning + full ASR stack). Timestamp - support requires recent NeMo (main / >= 2.5). -- Add as an **optional extra** in `pyproject.toml` (e.g. `.[canary]`), - **lazy-imported** inside `canary_backend.py` so non-Canary installs never load - NeMo — consistent with the other heavy backends (voxtral, qwen3). - -## Testing - -Per CLAUDE.md: real audio via `TestHarness`, no mock-based unit tests. All -Canary tests gated to run only when NeMo + model weights are available (skip -otherwise), like the other heavy-backend tests. - -1. **`CanaryASR`**: load model, `transcribe()` a known WAV, assert `ts_words()` - returns `ASRToken`s with monotonic, sane timestamps and WER below a threshold. -2. **`CanaryLID`**: feed clips in 2–3 languages; assert correct detected code and - correct VoxLingua107 → Canary mapping. -3. **End-to-end (`TestHarness`)**: backend=`canary`, feed real audio at - `speed=1.0`, `drain()`, assert committed text + WER threshold. A second run - with `lan="auto"` asserts the session locks to the correct language after the - first window. -4. **Routing**: `--backend canary` with the default `backend_policy` routes to - `OnlineASRProcessor` (not SimulStreaming), regardless of policy default. - -## Phased delivery - -- **Phase 1 (this spec):** `canary` backend on LocalAgreement + AmberNet - auto-detect. -- **Phase 2 (future, separate spec):** `canary-streaming` backend wrapping - NeMo's `speech_to_text_aed_streaming` AlignAtt decoder onto the SimulStreaming - policy for lower latency. - -## Open questions / risks - -- **NeMo version pin:** timestamp API needs a recent NeMo; pin a known-good - version in the optional extra and document it. -- **`init_prompt`:** Canary has no direct prompt-conditioning slot like Whisper; - the LocalAgreement `prompt()` context may be unused. Confirm whether Canary - exposes any decoder-context mechanism; if not, document that `init_prompt` is - ignored (LocalAgreement still functions without it). -- **Repeated full-window decode cost:** LocalAgreement re-decodes the growing - window each tick. On CUDA with a 1B model this is acceptable, but tune - `min_chunk_size` / `buffer_trimming_sec` to bound latency and compute; Phase 2 - streaming removes this cost. -- **LID code mapping:** validate every VoxLingua107 → Canary code (Greek `el`, - Ukrainian `uk`, Maltese `mt`) against Canary's exact accepted `source_lang` - token set. diff --git a/scripts/smoke_canary.py b/scripts/smoke_canary.py new file mode 100644 index 00000000..28e356bc --- /dev/null +++ b/scripts/smoke_canary.py @@ -0,0 +1,103 @@ +#!/usr/bin/env python3 +"""Smoke-test the NVIDIA Canary-1b-v2 ASR backend — no GPU required. + +Loads the Canary backend (NeMo ``EncDecMultiTaskModel``), transcribes a short +16 kHz mono clip, and prints the text plus per-word timestamps. Runs on CPU +(slower, but fully functional) so the backend can be validated without a GPU. +Exits non-zero if the model produces no output. + +Model card: https://huggingface.co/nvidia/canary-1b-v2 + +Usage +----- + pip install -e ".[canary]" + + # Validate with your own 16 kHz mono clip: + python scripts/smoke_canary.py path/to/clip.wav + + # Or with no argument, using a bundled LibriSpeech test sample: + python scripts/smoke_canary.py + +The model (~4 GB) downloads from Hugging Face on first run. For an equivalent +in-pipeline check, see the ``TestHarness`` snippet in tests/test_canary_backend.py +(``test_canary_end_to_end_via_testharness``). +""" + +import argparse +import sys + +import numpy as np + + +def load_audio(path: str) -> np.ndarray: + """Load an audio file as a 16 kHz mono float32 numpy array.""" + import soundfile as sf + + audio, sr = sf.read(path, dtype="float32") + if audio.ndim > 1: + audio = audio.mean(axis=1) + if sr != 16000: + import librosa + + audio = librosa.resample(audio, orig_sr=sr, target_sr=16000) + return np.asarray(audio, dtype=np.float32) + + +def main() -> None: + parser = argparse.ArgumentParser( + description=__doc__, + formatter_class=argparse.RawDescriptionHelpFormatter, + ) + parser.add_argument( + "audio", + nargs="?", + help="16 kHz mono WAV/FLAC path. If omitted, a bundled LibriSpeech sample is used.", + ) + parser.add_argument( + "--model", + default="nvidia/canary-1b-v2", + help="Canary model id or local .nemo path (default: nvidia/canary-1b-v2).", + ) + parser.add_argument( + "--language", + default="en", + help="Source language code, e.g. en, fr, de (default: en).", + ) + args = parser.parse_args() + + reference = None + if args.audio: + audio = load_audio(args.audio) + else: + from whisperlivekit.test_data import get_sample + + sample = get_sample("librispeech_short") + audio = load_audio(sample.path) + reference = getattr(sample, "reference", None) + + from whisperlivekit.canary_backend import CanaryASR + + print(f"Loading Canary backend '{args.model}' (CPU is fine; first run downloads ~4 GB)...") + asr = CanaryASR(lan=args.language, canary_model=args.model) + + res = asr.transcribe(audio, source_lang=args.language) + tokens = asr.ts_words(res) + # Canary emits space-prefixed word tokens (sep=""), so a plain join is correct. + text = "".join(t.text for t in tokens).strip() + + print("\n--- transcription ---") + print(text or "(empty!)") + if reference: + print(f"\n(reference: {reference})") + + print("\n--- word timestamps (first 12) ---") + for t in tokens[:12]: + print(f" [{t.start:6.2f} -> {t.end:6.2f}] {t.text!r}") + + ok = bool(text) + print(f"\nSMOKE {'PASS' if ok else 'FAIL'}: {len(tokens)} word token(s)") + sys.exit(0 if ok else 1) + + +if __name__ == "__main__": + main() From 6c7a505ad33530f06e5b674850ae042d1ae3472e Mon Sep 17 00:00:00 2001 From: wuxuedaifu Date: Mon, 3 Aug 2026 14:54:57 +0400 Subject: [PATCH 16/16] fix(canary): address PR #387 review (E402, LID label path, validation) Blockers: - tests: hoist importlib.util/pytest imports to top (ruff E402). - CanaryLID: resolve the class-label list across NeMo config layouts (cfg.labels and cfg.train_ds.labels) eagerly at load via resolve_lid_labels(); raise loudly if neither exists instead of indexing a possibly-missing cfg.labels in detect(). Follow-ups: - Reject per-session/config languages outside CANARY_LANGS: ValueError in CanarySessionASR.__init__, config-time check in core.py, and a client-facing websocket close(4400, reason) in basic_server.py. - Wrap the NeMo imports with an actionable install hint (_NEMO_INSTALL_HINT) that also names the Python 3.10-3.12 pin. - README: drop the false canary vs diarization-sortformer incompatibility (they co-resolve; both pull nemo-toolkit[asr]); CUDA -> CUDA/MPS/CPU; add a Python 3.10-3.12 note (the extra no-ops on 3.13). - Remove canary-added em dashes. - Add 4 non-NeMo-gated tests (label resolver + language rejection); 18 passed / 2 gated skip. Co-Authored-By: Claude Opus 4.8 (1M context) --- README.md | 13 +++++-- scripts/smoke_canary.py | 2 +- tests/test_canary_backend.py | 38 +++++++++++++++++- whisperlivekit/basic_server.py | 20 +++++++--- whisperlivekit/canary_backend.py | 67 ++++++++++++++++++++++++++++++-- whisperlivekit/core.py | 16 +++++++- 6 files changed, 137 insertions(+), 19 deletions(-) diff --git a/README.md b/README.md index 597238ca..4e607d9f 100644 --- a/README.md +++ b/README.md @@ -124,7 +124,7 @@ For a native SwiftUI macOS client, see [macos/WhisperLiveKitMac](macos/WhisperLi | **Qwen3-ASR vLLM Metal (Apple Silicon)** | Install vLLM with the official vllm-metal script first, then `uv sync --extra qwen3-vllm-metal` | Install vLLM with the official vllm-metal script first, then `pip install -e ".[qwen3-vllm-metal]"` | | **Speaker diarization (Sortformer / NeMo)** | `uv sync --extra diarization-sortformer` | `pip install -e ".[diarization-sortformer]"` | | *[Not recommended]* Speaker diarization with Diart | `uv sync --extra diarization-diart` | `pip install -e ".[diarization-diart]"` | -| **Canary-1b-v2 (NeMo, CUDA)** | `uv sync --extra canary` | `pip install -e ".[canary]"` | +| **Canary-1b-v2 (NeMo, CUDA/MPS/CPU)** | `uv sync --extra canary` | `pip install -e ".[canary]"` | Supported GPU profiles: @@ -139,7 +139,7 @@ uv sync --extra cu129 --extra voxtral-hf --extra translation uv sync --extra qwen3-vllm ``` -`qwen3-vllm` uses vLLM's CUDA wheel stack and must be installed in a separate environment from `cu129`. `voxtral-hf` / `qwen3-vllm-metal` / `canary` and `diarization-sortformer` are also intentionally incompatible extras and must be installed in separate environments. +`qwen3-vllm` uses vLLM's CUDA wheel stack and must be installed in a separate environment from `cu129`. Several heavy extras (`voxtral-hf`, `qwen3-vllm-metal`, and the vLLM stacks) intentionally conflict with one another and must be installed in separate environments; the authoritative list is `[tool.uv].conflicts` in `pyproject.toml`. The `canary` extra conflicts with `voxtral-hf` and `qwen3-vllm-metal`, but is compatible with `diarization-sortformer` (both pull `nemo-toolkit[asr]`). See **Parameters & Configuration** below on how to use them. @@ -278,7 +278,12 @@ wlk --backend canary --language auto ``` Notes: -- CUDA only; NeMo is a heavy dependency (torch, pytorch-lightning, and friends). +- Runs on CUDA, Apple Silicon (MPS), and CPU. A GPU is strongly recommended: + CPU works (see `scripts/smoke_canary.py`) but is slow for a 1B-parameter model. + NeMo is a heavy dependency (torch, pytorch-lightning, and friends). +- Requires Python 3.10-3.12. NeMo's wheels do not yet support 3.13+, so on 3.13 + the `canary` extra resolves to nothing and `pip install -e ".[canary]"` installs + no NeMo; use a 3.10-3.12 environment. - Word/segment timestamps require NeMo's timestamp API, available in NeMo 2.5+. The `canary` extra pins `nemo-toolkit[asr]>=2.5.0`; if you land on a build where the timestamp API is missing, install NeMo from `main`. @@ -357,7 +362,7 @@ async def websocket_endpoint(websocket: WebSocket): | `--translation-backend` | `nllb` (in-process, CPU-friendly) or `alignatt`: streaming LLM translation through an [Alignatt4LLM](https://github.com/QuentinFuxa/Alignatt4LLM) sidecar, with attention-gated append-only commits. See [docs/translation-alignatt.md](docs/translation-alignatt.md). | `nllb` | | `--diarization` | Enable speaker identification | `False` | | `--backend-policy` | Streaming strategy: `1`/`simulstreaming` uses AlignAtt SimulStreaming, `2`/`localagreement` uses the LocalAgreement policy | `simulstreaming` | -| `--backend` | ASR backend selector. `auto` picks MLX on macOS (if installed), otherwise Faster-Whisper, otherwise vanilla Whisper. Options: `mlx-whisper`, `faster-whisper`, `whisper`, `openai-api` (LocalAgreement only), `voxtral-mlx` (Apple Silicon), `voxtral` (HuggingFace), `qwen3-vllm`, `qwen3-vllm-metal` (Apple Silicon), `qwen3-streaming` (HuggingFace, CUDA/MPS/CPU), `canary` (NeMo, CUDA) | `auto` | +| `--backend` | ASR backend selector. `auto` picks MLX on macOS (if installed), otherwise Faster-Whisper, otherwise vanilla Whisper. Options: `mlx-whisper`, `faster-whisper`, `whisper`, `openai-api` (LocalAgreement only), `voxtral-mlx` (Apple Silicon), `voxtral` (HuggingFace), `qwen3-vllm`, `qwen3-vllm-metal` (Apple Silicon), `qwen3-streaming` (HuggingFace, CUDA/MPS/CPU), `canary` (NeMo, CUDA/MPS/CPU) | `auto` | | `--no-vac` | Disable Voice Activity Controller. NOT ADVISED | `False` | | `--no-vad` | Disable Voice Activity Detection. NOT ADVISED | `False` | | `--warmup-file` | Audio file path for model warmup | `jfk.wav` | diff --git a/scripts/smoke_canary.py b/scripts/smoke_canary.py index 28e356bc..aa22820e 100644 --- a/scripts/smoke_canary.py +++ b/scripts/smoke_canary.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -"""Smoke-test the NVIDIA Canary-1b-v2 ASR backend — no GPU required. +"""Smoke-test the NVIDIA Canary-1b-v2 ASR backend, no GPU required. Loads the Canary backend (NeMo ``EncDecMultiTaskModel``), transcribes a short 16 kHz mono clip, and prints the text plus per-word timestamps. Runs on CPU diff --git a/tests/test_canary_backend.py b/tests/test_canary_backend.py index ca9e5073..1f6c4f0f 100644 --- a/tests/test_canary_backend.py +++ b/tests/test_canary_backend.py @@ -1,6 +1,8 @@ +import importlib.util from argparse import Namespace import numpy as np +import pytest def test_parse_args_accepts_canary_options(monkeypatch): @@ -191,9 +193,41 @@ def test_auto_with_no_lid_uses_default(): assert asr.calls == ["en"] -import importlib.util +def test_canary_session_rejects_unsupported_explicit_language(): + from whisperlivekit.canary_backend import CanarySessionASR + + # A per-session language Canary does not support must fail loudly at setup, + # not produce a silently dead session. + with pytest.raises(ValueError): + CanarySessionASR(_RecordingCanaryASR(), "zh", default_lang="en") + + +class _FakeLIDModel: + def __init__(self, cfg): + self.cfg = cfg + + +def test_resolve_lid_labels_reads_cfg_labels(): + from whisperlivekit.canary_backend import resolve_lid_labels + + model = _FakeLIDModel({"labels": ["en", "de", "fr"]}) + assert resolve_lid_labels(model) == ["en", "de", "fr"] + + +def test_resolve_lid_labels_falls_back_to_train_ds(): + from whisperlivekit.canary_backend import resolve_lid_labels + + # Some NeMo checkpoints keep the label list under train_ds, not cfg.labels. + model = _FakeLIDModel({"labels": None, "train_ds": {"labels": ["en", "de"]}}) + assert resolve_lid_labels(model) == ["en", "de"] + + +def test_resolve_lid_labels_raises_when_absent(): + from whisperlivekit.canary_backend import resolve_lid_labels + + with pytest.raises(RuntimeError): + resolve_lid_labels(_FakeLIDModel({"other": 1})) -import pytest _NEMO_AVAILABLE = importlib.util.find_spec("nemo") is not None requires_nemo = pytest.mark.skipif(not _NEMO_AVAILABLE, reason="NeMo not installed") diff --git a/whisperlivekit/basic_server.py b/whisperlivekit/basic_server.py index ce2f5889..845e787a 100644 --- a/whisperlivekit/basic_server.py +++ b/whisperlivekit/basic_server.py @@ -105,12 +105,20 @@ async def websocket_endpoint(websocket: WebSocket): mode = websocket.query_params.get("mode", "full") session_target_language = websocket.query_params.get("target_language", None) - audio_processor = AudioProcessor( - transcription_engine=transcription_engine, - language=session_language, - mode=mode, - target_language=session_target_language, - ) + try: + audio_processor = AudioProcessor( + transcription_engine=transcription_engine, + language=session_language, + mode=mode, + target_language=session_target_language, + ) + except ValueError as e: + # e.g. a per-session ?language= the backend does not support. Surface the + # reason to the client instead of failing the handshake with no context. + logger.warning("Rejecting WebSocket session: %s", e) + await websocket.accept() + await websocket.close(code=4400, reason=str(e)[:123]) + return await websocket.accept() logger.info( "WebSocket connection opened.%s%s", diff --git a/whisperlivekit/canary_backend.py b/whisperlivekit/canary_backend.py index 6593f5d4..94764318 100644 --- a/whisperlivekit/canary_backend.py +++ b/whisperlivekit/canary_backend.py @@ -20,6 +20,16 @@ logger = logging.getLogger(__name__) +# Shown when NeMo is missing. Note the Python pin: NeMo's wheels cap at 3.12, so +# on 3.13+ the `canary` extra resolves to nothing and the import still fails here +# (see the extra's marker in pyproject.toml), hence the explicit version hint. +_NEMO_INSTALL_HINT = ( + "The Canary backend requires NeMo, which is not installed. Install it with:\n" + ' pip install -e ".[canary]"\n' + "NeMo currently supports Python 3.10-3.12 only; on 3.13+ the extra installs " + "nothing, so use a 3.10-3.12 environment." +) + # Canary-1b-v2's 25 supported source-language codes. CANARY_LANGS = { @@ -70,6 +80,37 @@ def canary_segment_end_ts(segment_stamps) -> List[float]: return [s["end"] for s in segment_stamps] +def resolve_lid_labels(model) -> List[str]: + """Locate the LID model's ordered class-label list across NeMo config layouts. + + NeMo stores the classification labels in different places depending on the + model and version: some checkpoints expose them at ``cfg.labels``, others + keep them at ``cfg.train_ds.labels`` (where they were set during training). + We probe the known locations, in order, and return the first non-empty list. + + Resolving this eagerly at load (rather than indexing a possibly-missing list + inside detect()) means a checkpoint whose labels we cannot find fails loudly + at model-load time, so auto-detection is disabled with a clear reason instead + of silently mispredicting every utterance. + """ + cfg = getattr(model, "cfg", None) + for path in (("labels",), ("train_ds", "labels")): + node = cfg + for key in path: + try: + node = node[key] + except (KeyError, TypeError, AttributeError): + node = None + break + if node: + return list(node) + raise RuntimeError( + "Canary LID model exposes no class-label list at cfg.labels or " + "cfg.train_ds.labels; predictions cannot be mapped to language codes. " + "Auto language detection is unavailable for this checkpoint." + ) + + class CanarySessionASR(SessionASRProxy): """Per-session Canary proxy with auto language detection. @@ -86,6 +127,11 @@ def __init__(self, asr, language, lid=None, default_lang="en", lid_min_sec=2.0, lid_min_conf=0.5): super().__init__(asr, language) is_auto = (language is None) or (language == "auto") + if not is_auto and language not in CANARY_LANGS: + raise ValueError( + f"Canary does not support language {language!r}. Use 'auto' or one " + f"of the 25 supported codes: {', '.join(sorted(CANARY_LANGS))}." + ) object.__setattr__(self, "_is_auto", is_auto) object.__setattr__(self, "_lid", lid) object.__setattr__(self, "_default_lang", default_lang) @@ -148,7 +194,10 @@ def __init__(self, lan="auto", canary_model="nvidia/canary-1b-v2", self.transcribe_kargs = {} self.lid_model = None # attached by core.py when auto detection is enabled - from nemo.collections.asr.models import ASRModel + try: + from nemo.collections.asr.models import ASRModel + except ImportError as e: + raise ImportError(_NEMO_INSTALL_HINT) from e t = time.time() logger.info("Loading Canary model '%s' via NeMo...", canary_model) @@ -209,7 +258,10 @@ class CanaryLID: def __init__(self, lid_model="langid_ambernet", logfile=None, **_unused): import time - import nemo.collections.asr as nemo_asr + try: + import nemo.collections.asr as nemo_asr + except ImportError as e: + raise ImportError(_NEMO_INSTALL_HINT) from e t = time.time() logger.info("Loading Canary LID model '%s' via NeMo...", lid_model) @@ -221,7 +273,14 @@ def __init__(self, lid_model="langid_ambernet", logfile=None, **_unused): self.device = next(self.model.parameters()).device except StopIteration: # pragma: no cover self.device = "cpu" - logger.info("Canary LID model loaded in %.2fs", time.time() - t) + # Resolve the class-label list now so an unmappable checkpoint fails at + # load (caught by core.py, which disables auto-detect) rather than + # mispredicting silently on the first detect() call. + self.labels = resolve_lid_labels(self.model) + logger.info( + "Canary LID model loaded in %.2fs (%d labels)", + time.time() - t, len(self.labels), + ) def detect(self, audio) -> Tuple[Optional[str], float]: """Return (canary_lang_code_or_None, confidence) for a 16kHz clip.""" @@ -235,7 +294,7 @@ def detect(self, audio) -> Tuple[Optional[str], float]: logits, _ = self.model.forward(input_signal=sig, input_signal_length=sig_len) probs = logits.softmax(dim=-1) conf, idx = probs.max(dim=-1) - raw_code = self.model.cfg.labels[int(idx.item())] + raw_code = self.labels[int(idx.item())] confidence = float(conf.item()) mapped = map_voxlingua_to_canary(raw_code) if mapped is None: diff --git a/whisperlivekit/core.py b/whisperlivekit/core.py index ee6f7ec6..31d38ad3 100644 --- a/whisperlivekit/core.py +++ b/whisperlivekit/core.py @@ -204,7 +204,19 @@ def _do_init(self, config=None, **kwargs): self.asr = VoxtralHFStreamingASR(**transcription_common_params) logger.info("Using Voxtral HF Transformers streaming backend") elif config.backend == "canary": - from whisperlivekit.canary_backend import CanaryASR, CanaryLID + from whisperlivekit.canary_backend import CANARY_LANGS, CanaryASR, CanaryLID + # Config-time language validation: reject unsupported codes at + # startup rather than letting a session silently fall back or die. + if config.canary_default_lang not in CANARY_LANGS: + raise ValueError( + f"--canary-default-lang {config.canary_default_lang!r} is not one " + f"of Canary's 25 supported codes: {', '.join(sorted(CANARY_LANGS))}." + ) + if config.lan not in (None, "auto") and config.lan not in CANARY_LANGS: + raise ValueError( + f"--language {config.lan!r} is not supported by Canary. Use 'auto' " + f"or one of: {', '.join(sorted(CANARY_LANGS))}." + ) self.tokenizer = None self.asr = CanaryASR( lan=config.lan, @@ -216,7 +228,7 @@ def _do_init(self, config=None, **kwargs): ) # Load the LID model so any session may request auto-detection. # A failure here (e.g. the LID model cannot be downloaded) must - # not stop the server from serving transcription — degrade to no + # not stop the server from serving transcription; degrade to no # auto-detect (sessions fall back to --canary-default-lang). try: self.asr.lid_model = CanaryLID(lid_model=config.canary_lid_model)